使用多个属性文件从 PropertyPlaceholderConfigurer 访问属性

发布于 2024-12-02 15:11:05 字数 745 浏览 1 评论 0原文

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

醉梦枕江山 2024-12-09 15:11:05
@Value("${schdestination}")
private String destination;

应该有效。

@Value("${schdestination}")
private String destination;

should work.

初相遇 2024-12-09 15:11:05

包含@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.

眼泪也成诗 2024-12-09 15:11:05

您在网络应用程序中使用它吗?这就是我的情况。我正在从应用程序上下文加载属性文件,但不知何故它们在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文