spring 通过编程来获取属性文件
生活随笔
收集整理的這篇文章主要介紹了
spring 通过编程来获取属性文件
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
配置可以讀取屬性:
<beans profile="dev"><context:property-placeholder ignore-resource-not-found="true"location="classpath:/META-INF/config/dev/*.properties" /></beans><beans profile="idc"><context:property-placeholder ignore-resource-not-found="true"location="classpath:/META-INF/config/idc/*.properties" /></beans><beans profile="production"><context:property-placeholder ignore-resource-not-found="true"location="classpath:/META-INF/config/prod/*.properties" /></beans><beans profile="test"><context:property-placeholder ignore-resource-not-found="true"location="classpath:/META-INF/config/test/*.properties" /></beans>?
也可以通過編程的形式獲取文件屬性:
Resource resource = new ClassPathResource("/my.properties"); Properties props = PropertiesLoaderUtils.loadProperties(resource);參考文獻:
【1】http://stackoverflow.com/questions/1771166/access-properties-file-programatically-with-spring
?
轉載于:https://www.cnblogs.com/davidwang456/p/4861855.html
總結
以上是生活随笔為你收集整理的spring 通过编程来获取属性文件的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: java解压多目录Zip文件(解决中文乱
- 下一篇: Guide: Solr performa