spring-dao.xml 4.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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" xmlns:aop="http://www.springframework.org/schema/aop"
  4. xmlns:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context"
  5. xmlns:p="http://www.springframework.org/schema/p" xmlns:task="http://www.springframework.org/schema/task"
  6. xsi:schemaLocation="http://www.springframework.org/schema/beans
  7. classpath:org/springframework/beans/factory/xml/spring-beans-3.1.xsd
  8. http://www.springframework.org/schema/aop
  9. classpath:org/springframework/aop/config/spring-aop-3.1.xsd
  10. http://www.springframework.org/schema/tx
  11. classpath:org/springframework/transaction/config/spring-tx-3.1.xsd
  12. http://www.springframework.org/schema/context
  13. classpath:org/springframework/context/config/spring-context-3.1.xsd
  14. ">
  15. <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource" init-method="init" destroy-method="clone">
  16. <!-- 基本属性driverClassName、 url、user、password -->
  17. <property name="driverClassName" value="${jdbc.driverClassName}" />
  18. <property name="url" value="${edu.jdbc.url}" />
  19. <property name="username" value="${edu.jdbc.username}" />
  20. <property name="password" value="${edu.jdbc.password}" />
  21. <!-- 配置初始化大小、最小、最大 -->
  22. <!-- 通常来说,只需要修改initialSize、minIdle、maxActive -->
  23. <!-- 初始化时建立物理连接的个数,缺省值为0 -->
  24. <property name="initialSize" value="2" />
  25. <!-- 最小连接池数量 -->
  26. <property name="minIdle" value="2" />
  27. <!-- 最大连接池数量,缺省值为8 -->
  28. <property name="maxActive" value="10" />
  29. <!-- 获取连接时最大等待时间,单位毫秒。配置了maxWait之后,缺省启用公平锁,并发效率会有所下降,如果需要可以通过配置useUnfairLock属性为true使用非公平锁。 -->
  30. <property name="maxWait" value="60000" />
  31. <!--
  32. 有些数据库连接的时候有超时限制(MySQL连接在8小时后断开),或者由于网络中断等原因,连接池的连接会出现失效的情况,这时候可以设置一个testWhileIdle参数为true,
  33. 如果检测到当前连接不活跃的时间超过了timeBetweenEvictionRunsMillis,则去手动检测一下当前连接的有效性,在保证确实有效后才加以使用。
  34. 在检测活跃性时,如果当前的活跃时间大于minEvictableIdleTimeMillis,则认为需要关闭当前连接。当
  35. 然,为了保证绝对的可用性,你也可以使用testOnBorrow为true(即在每次获取Connection对象时都检测其可用性),不过这样会影响性能。
  36. -->
  37. <!-- 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒(3600000:为1小时) -->
  38. <property name="timeBetweenEvictionRunsMillis" value="3600000" />
  39. <!-- 配置一个连接在池中最小生存的时间,单位是毫秒(300000:为5分钟) -->
  40. <property name="minEvictableIdleTimeMillis" value="300000" />
  41. <!-- 用来检测连接是否有效的sql,要求是一个查询语句。如果validationQuery为null,testOnBorrow、testOnReturn、testWhileIdle都不会其作用。 -->
  42. <property name="validationQuery" value="${jdbc.pool.validationQuery}" />
  43. <!-- 申请连接的时候检测,如果空闲时间大于timeBetweenEvictionRunsMillis,执行validationQuery检测连接是否有效。建议配置为true,不影响性能,并且保证安全性。-->
  44. <property name="testWhileIdle" value="true" />
  45. <!-- 申请连接时执行validationQuery检测连接是否有效,做了这个配置会降低性能。缺省值:true -->
  46. <property name="testOnBorrow" value="false" />
  47. <!-- 归还连接时执行validationQuery检测连接是否有效,做了这个配置会降低性能。缺省值:false -->
  48. <property name="testOnReturn" value="false" />
  49. <!-- 打开PSCache,并且指定每个连接上PSCache的大小 -->
  50. <!-- 是否缓存preparedStatement,也就是PSCache。PSCache对支持游标的数据库性能提升巨大,比如说oracle。在mysql5.5以下的版本中没有PSCache功能,建议关闭掉。5.5及以上版本有PSCache,建议开启。缺省值:false -->
  51. <property name="poolPreparedStatements" value="true" />
  52. <!-- 要启用PSCache,必须配置大于0,当大于0时,poolPreparedStatements自动触发修改为true。在Druid中,不会存在Oracle下PSCache占用内存过多的问题,可以把这个数值配置大一些,比如说100。 -->
  53. <property name="maxPoolPreparedStatementPerConnectionSize" value="20" />
  54. </bean>
  55. <!-- 配置Jdbc模板 -->
  56. <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
  57. <property name="dataSource" ref="dataSource"></property>
  58. </bean>
  59. </beans>