欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

spring读取properties

程序员文章站 2022-05-02 08:17:28
...
有时候需要把properties文件放在包外方便修改配置。

这里用的是spring的PropertyPlaceholderConfigurer来读取properties属性。


<!-- Load ProperyFile -->
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>file:${user.dir}/config/application.properties</value>
<value>file:${user.dir}/config/mailMsg.properties</value>
</list>
</property>
<property name="fileEncoding" value="utf-8"/>
</bean>


如果用的是eclipse,所以 file:${user.dir} 在windows环境下会取到eclipse路径下,在linux上则会取到你当前放置war包的weblogic的domain下,然后拼接你的路径即可。
也可以用file:${user.home}来获取properties的值,windows的话是document/Users/..的路径,如果是linxu则是根目录下home的路径。
如果你要取包内的properties,用classpath:是取classes下的路径。
这样就能完成war包和配置文件的分离。
相关标签: spring properties