多数的鲜为人知方法都是因为有着罕见的应用,就比如说Spring中PropertyPlaceholderConfigurer这个类,它是用来解析Java Properties属性文件值,并提供在spring配置期间替换使用属性值。接下来让我们逐渐的深入其配置。

基本的使用方法是:(1)

  1. <bean id="propertyConfigurerForAnalysis" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
  2. <property name="location">
  3. <value>classpath:/spring/include/dbQuery.properties</value>
  4. </property>
  5. </bean>

其中classpath是引用src目录下的文件写法。

当存在多个Properties文件时,配置就需使用locations了:(2)

  1. <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
  2. <property name="locations">
  3. <list>
  4. <value>classpath:/spring/include/jdbc-parms.properties</value>
  5. <value>classpath:/spring/include/base-config.properties</value>
  6. </list>
  7. </property>
  8. </bean>

接下来我们要使用多个PropertyPlaceholderConfigurer来分散配置,达到整合多工程下的多个分散的Properties文件,其配置如下:(3)

  1. <bean id="propertyConfigurerForProject1" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
  2. <property name="order" value="1" />
  3. <property name="ignoreUnresolvablePlaceholders" value="true" />
  4. <property name="location">
  5. <value>classpath:/spring/include/dbQuery.properties</value>
  6. </property>
  7. </bean>
  1. <bean id="propertyConfigurerForProject2" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
  2. <property name="order" value="2" />
  3. <property name="ignoreUnresolvablePlaceholders" value="true" />
  4. <property name="locations">
  5. <list>
  6. <value>classpath:/spring/include/jdbc-parms.properties</value>
  7. <value>classpath:/spring/include/base-config.properties</value>
  8. </list>
  9. </property>
  10. </bean>

其中order属性代表其加载顺序,而ignoreUnresolvablePlaceholders为是否忽略不可解析的Placeholder,如配置了多个PropertyPlaceholderConfigurer,则需设置为true

至此你已经了解到了如何使用PropertyPlaceholderConfigurer,如何使用多个Properties文件,以及如何配置多个PropertyPlaceholderConfigurer来分解工程中分散的Properties文件。至于PropertyPlaceholderConfigurer还有更多的扩展应用,如属性文件加密解密等方法将在之后的博文中续写。

最新文章

  1. 无废话ExtJs 入门教程三[窗体:Window组件]
  2. pycharm 常用设置
  3. Mac系统之----教你怎么显示隐藏文件,或者关闭显示隐藏文件
  4. java基础-008
  5. 最简单的视音频播放示例2:GDI播放YUV, RGB
  6. ubuntu下安装pdo和pdo_mysql扩展
  7. 用UIWebView加载本地图片和gif图
  8. 如何调用别人提供的webservice接口
  9. java 基础排序算法
  10. P2661 信息传递
  11. 【剑指offer】合并有序链表
  12. 针对Web应用的【攻击模式篇】
  13. Linux下Redis主从复制以及SSDB主主复制环境部署记录
  14. PAT 乙级 1061. 判断题(15)
  15. 代码: js: 数值操作
  16. 2018.07.06 BZOJ1208: HNOI2004宠物收养所(非旋treap)
  17. jzoj5888
  18. ebay分布式事务方案中文版
  19. SpringBoot入门学习(一)
  20. nuget get-package id显示不全

热门文章

  1. php Try Catch多层级异常测试
  2. AJPFX关于多线程概述及应用
  3. mysql对库,表及记录的增删改查
  4. git diff查看修改,出现^M换行问题
  5. Win10 系统安装Sql Server2008 R2 数据库遇到的问题及解决办法总结!
  6. java语言基础-类型运算细节
  7. LC.exe 已退出,代码为-1 问题解决
  8. jeecms
  9. python基础一day3 字符串
  10. CWnd::Updata的作用