SpringMVC配置數據庫鏈接池

http://www.cnblogs.com/coqn/archive/2012/08/15/SpringMvc%E7%8E%AF%E5%A2%83%E6%90%AD%E5%BB%BA%E9%85%8D%E7%BD%AE.html

SpringMvc環境搭建(配置文件)

 

spring配置:context:property-placeholder 讀取配置文件信息 在配置文件中使用el表達式填充值

spring將properties文件讀取後在配置文件中直接將對象的配置信息填充到bean中的變量裏。html

本來使用PropertyPlaceholderConfigurer類進行文件信息配置。 PropertyPlaceholderConfigurer實現了BeanFactoryPostProcessor接口,可以 對<bean/>中的屬性值進行外在化管理。
<bean id="propertyPlaceholderConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
  <property name="locations">
    <list>
      <value>userinfo.properties</value>
    </list>
  </property>
</bean>
<bean name="userInfo" class="test.UserInfo">
  <property name="username" value="${db.username}"/>
  <property name="password" value="${db.password}"/>
</bean>

如今,直接使用
<context:property-placeholder location="classpath*:resources/*.properties" />spring

注意:spring容器中最多隻能定義一個context:property-placeholder。post

分類: spring
 
不知道這個對不對,先記錄下來
相關文章
相關標籤/搜索