在 Spring 中指定相对于上下文 XML 的位置
有没有办法引用文件系统上(而不是类路径上)相对于 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”之前,但找不到任何有用的东西。
谢谢。
Is there a way to reference a properties file on a file system (not on a classpath) relative to the Spring's context file itself?
What I want to do is the below:
<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>
I was imagining something like ${contextpath}
that I could prepend to the above "app.properties" but couldn't find anything helpful.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过
classpath:
前缀引用类路径上的属性:You can reference properties on the classpath via the
classpath:
prefix: