分散配置

    在spring中引入外部的properties的文件,Xml中的部分代码:

Code:
  1. <!-- 分散配置 -->   
  2.     <bean id="propertyPlaceholderConfigurer"   
  3.         class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">   
  4.         <property name="location">   
  5.             <value>cn/csdn/domain/jdbc.properties</value>   
  6.         </property>   
  7.     </bean>   
  8.     <!-- 使用外部 的jdbc.properties文件-->   
  9.     <bean id="connServiceImpl" class="cn.csdn.util.ConnServiceImpl"   
  10.         scope="singleton">   
  11.         <property name="driverClass">   
  12.             <value>${driverClass}</value>   
  13.         </property>   
  14.         <property name="url">   
  15.             <value>${url}</value>   
  16.         </property>   
  17.         <property name="user">   
  18.             <value>${username}</value>   
  19.         </property>   
  20.         <property name="password">   
  21.             <value>${password}</value>   
  22.         </property>   
  23.     </bean>  

 

你可能感兴趣的:(spring,xml,properties,user,url,Class)