使用多个属性文件从 PropertyPlaceholderConfigurer 访问属性
我是 spring (3.1) 的新手,完全被这个问题难住了。 我正在尝试使用在两个属性文件(一个覆盖另一个)中定义的 PropertyPlaceholderConfigurer 访问属性值“schdestination”。
我想使用 @Value 在类中设置一个字段,但我找不到一种不使用另一个 bean 的方法来做到这一点。这是我的 spring XML 片段
<bean id="placeholderProperties" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>/WEB-INF/abc.properties</value>
<value>/WEB-INF/loc.abc.properties</value>
</list>
</property>
<property name="ignoreUnresolvablePlaceholders" value="true" />
<property name="order" value="1" />
</bean>
请问有什么线索吗?
I am new to spring (3.1) and totally stumped by this problem.
I am trying to access a property value "schdestination" using a PropertyPlaceholderConfigurer that is defined in two property files (one overriding the other).
I want to use @Value to set a field in a class and i just can't find a way to do it without using another bean. Here is my spring XML snippet
<bean id="placeholderProperties" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>/WEB-INF/abc.properties</value>
<value>/WEB-INF/loc.abc.properties</value>
</list>
</property>
<property name="ignoreUnresolvablePlaceholders" value="true" />
<property name="order" value="1" />
</bean>
Any clues please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
应该有效。
should work.
包含
@Value
的类需要用@Component
注释,并且需要有
在您的 applicationContext.xml 中。The class that contains the
@Value
needs to be annotated with@Component
and you need to have<context:component-scan/>
in your applicationContext.xml.您在网络应用程序中使用它吗?这就是我的情况。我正在从应用程序上下文加载属性文件,但不知何故它们在 Web 应用程序包中不可见 - 准确地说是控制器。我必须在 servlet-context.xml 中重新声明它们,然后它们就可见并且工作得很好。我真的希望有人能够阐明可能发生的情况,或者这是否确实是一个需要在春季解决的问题。
Are you using it in your web app? That was my case. I was loading property files from application context and somehow they were not visible in the web app package - controllers to be precise. I had to re-declare them in servlet-context.xml, then they are visible and work just fine. I am really hoping somebody might shed some light what could be going on, or whether it is truly an issue to be fixed in Spring.