这个在spring中配置文件中是非常常用的。

context:property-placeholder大大的方便了我们数据库的配置。

只需要在spring的配置文件里添加一句:<context:property-placeholder?location="classpath:jdbc.properties"/>?即可,这里location值为参数配置文件的位置,参数配置文件通常放在src目录下,而参数配置文件的格式跟java通用的参数配置文件相同,即键值对的形式,例如:

  1. #jdbc配置
  2. test.jdbc.driverClassName=com.mysql.jdbc.Driver
  3. test.jdbc.url=jdbc:mysql://localhost:3306/test
  4. test.jdbc.username=root
  5. test.jdbc.password=root

这样一来就可以为spring配置的bean的属性设置值了,比如spring有一个jdbc数据源的类DriverManagerDataSource

在配置文件里这么定义bean:

<bean id="testDataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="${test.jdbc.driverClassName}"/>
<property name="url" value="${test.jdbc.url}"/>
<property name="username" value="${test.jdbc.username}"/>
<property name="password" value="${test.jdbc.password}"/>
</bean>

这样修改起来也方便,也统一的这个规范。

另外需要注意的是,如果遇到下面着着这种问题:

A模块和B模块都分别拥有自己的Spring XML配置,并分别拥有自己的配置文件:

A模块的Spring配置文件如下:

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xmlns:p="http://www.springframework.org/schema/p"
  6. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
  7. http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd">
  8. <context:property-placeholder location="classpath*:conf/conf_a.properties"/>
  9. <bean class="com.xxx.aaa.Bean1"
  10. p:driverClassName="${modulea.jdbc.driverClassName}"
  11. p:url="${modulea.jdbc.url}"
  12. p:username="${modulea.jdbc.username}"
  13. p:password="${modulea.jdbc.password}"/>
  14. </beans>

conf/conf_a.properties:

  1. modulea.jdbc.driverClassName=com.mysql.jdbc.Driver
  2. modulea.jdbc.username=cartan
  3. modulea.jdbc.password=superman
  4. modulea.jdbc.url=jdbc:mysql://127.0.0.1:3306/modulea?useUnicode=true&characterEncoding=utf8

B模块的Spring配置文件如下:

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xmlns:p="http://www.springframework.org/schema/p"
  6. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
  7. http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd">
  8. <context:property-placeholder location="classpath*:conf/conf_b.properties"/>
  9. <bean class="com.xxx.bbb.Bean1"
  10. p:driverClassName="${moduleb.jdbc.driverClassName}"
  11. p:url="${moduleb.jdbc.url}"
  12. p:username="${moduleb.jdbc.username}"
  13. p:password="${moduleb.jdbc.password}"/>
  14. </beans>

conf/conf_b.properties:

  1. moduleb.jdbc.driverClassName=com.mysql.jdbc.Driver
  2. moduleb.jdbc.username=cartan
  3. moduleb.jdbc.password=superman
  4. moduleb.jdbc.url=jdbc:mysql://127.0.0.1:3306/modulea?useUnicode=true&characterEncoding=utf8

单独运行A模块,或单独运行B模块都是正常的,但将A和B两个模块集成后运行,Spring容器就启动不了了:
Could not resolve placeholder 'moduleb.jdbc.driverClassName' in string value "${moduleb.jdbc.driverClassName}"
原因:Spring容器采用反射扫描的发现机制,在探测到Spring容器中有一个org.springframework.beans.factory.config.PropertyPlaceholderConfigurer的Bean就会停止对剩余PropertyPlaceholderConfigurer的扫描

spring容器中最多只能定义一个context:property-placeholder,不然就出现那种个错误,那如何来解决上面的问题呢?

A和B模块去掉

  1. <context:property-placeholder location="classpath*:conf/conf_b.properties"/>

然后重新写个xml:

    1. <?xml version="1.0" encoding="UTF-8" ?>
    2. <beans xmlns="http://www.springframework.org/schema/beans"
    3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    4. xmlns:context="http://www.springframework.org/schema/context"
    5. xmlns:p="http://www.springframework.org/schema/p"
    6. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
    7. http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd">
    8. <context:property-placeholder location="classpath*:conf/conf*.properties"/>
    9. <import resource="a.xml"/>
    10. <import resource="b.xml"/>
    11. </beans>

最新文章

  1. Windows下配置nginx+php(wnmp)
  2. 如何在winform或者wpf里面打开浏览器并设置宽高位置
  3. codeforces 101C C. Vectors(数学)
  4. Android 使用ContentProvider扫描手机中的图片,仿微信显示本地图片效果
  5. 后台动态设置前台标签内容和属性(转自http://www.wzsky.net/html/Program/net/26171.html)
  6. 窗体位置设置StartPosition属性
  7. 锋利的JQuery-认识Jquery
  8. 【JPA】query新对象 需要 构造函数
  9. XML 序列化与PULL解析
  10. 初涉JavaScript模式 (5) : 原型模式 【一】
  11. weblogic使用脚本部署
  12. Python中初始化的问题以及注释问题
  13. JAVA_SE基础——40.super关键字
  14. [LeetCode] Prime Palindrome 质数回文数
  15. java socket 基础操作
  16. Codeforces 1079D Barcelonian Distance(计算几何)
  17. Visual Studio 2017 常用快捷键
  18. 在linux中编译grpc
  19. tomcat部署应用仅需ip和port访问
  20. 【.Net】C# 将Access中时间段条件查询的数据添加到ListView中

热门文章

  1. 2208: [Jsoi2010]连通数 - BZOJ
  2. Maven--(一个坑)在settings.xml文件中添加mirrors导致无法新建Maven项目
  3. execvp使用实例
  4. Matlab中mat2cell的使用
  5. C#textbox右击弹出菜单
  6. new Date()的数据类型的问题
  7. 如何恢复SQL Server 中的Master库
  8. Python Requests模块讲解4
  9. hdu 1812 Count the Tetris
  10. 套题T7