2

有没有办法在相对于 Spring 的上下文文件本身的文件系统(而不是类路径)上引用属性文件?

我想做的是以下内容:

<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
    <property name="locations">
        <list>
            <!-- I want the below to be relative to this context XML file. -->
            <value>app.properties</value>
        </list>
    </property>
</bean>

我在想像${contextpath}我可以在上面的“app.properties”之前添加类似的东西,但找不到任何有用的东西。

谢谢。

4

1 回答 1

0

您可以通过引用类路径上的属性classpath:您可以通过前缀

<value>classpath:app.properties</value>
于 2010-04-07T09:30:05.020 回答