spring bean的分散配置(a.properties文件读取的第四种方式)

见韩顺平的spring 第12讲

她 把原本需要在 中配置的property放在一个a.properties文件中,自己通过el表达式取值。

其中,a.properties的初始化通过spring 提供的特殊bean ----PropertyPlaceHolderConfigure(分散配置bean)来处理。不需要写什么,只需要配置下下就好了:

            

              

                com/test/properties/a.properties

                com/test/properties/b.properties

              

            

         

更简单的配置: 即可

 

补充:四种获得a.properties 里面值的方法

1. ResourceBundle,见我博客

2.filter 继承类咯有个fiterConfig,见上篇博客

3.propertiesConfiguration

4.此篇

 

转载于:https://www.cnblogs.com/yanjunwu/archive/2013/04/05/3000456.html

你可能感兴趣的:(spring bean的分散配置(a.properties文件读取的第四种方式))