您的位置:首页 > 编程语言 > Java开发

SpringMVC配置数据库连接池

2016-01-08 22:15 477 查看

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中的变量里。

原本使用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容器中最多只能定义一个context:property-placeholder。

分类: spring
标签: context:property-placeholder

不知道这个对不对,先记录下来
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: