标签:code spring 而不是 优势 try stp art 控制 rtt
Default: 3 -->
<property name="acquireIncrement">
<value>5</value>
</property>
<!--JDBC的标准參数。用以控制数据源内载入的PreparedStatements
数量。但因为预缓存的statements
属于单个connection而不是整个连接池。所以设置这个參数须要考虑
到多方面的因素。
假设maxStatements与maxStatementsPerConnection均为0,则缓存被
关闭。Default: 0-->
<property name="maxStatements">
<value>0</value>
</property>
<!--每60秒检查全部连接池中的空暇连接。Default: 0 -->
<property name="idleConnectionTestPeriod">
<value>60</value>
</property>
<!--定义在从数据库获取新连接失败后反复尝试的次数。
Default: 30
-->
<property name="acquireRetryAttempts">
<value>30</value>
</property>
<!--获取连接失败将会引起全部等待连接池来获取连接的线程抛出异
常。
可是数据源仍有效
保留。并在下次调用getConnection()的时候继续尝试获取连接。如
果设为true,那么在尝试
获取连接失败后该数据源将申明已断开并永久关闭。
Default:
false-->
<property name="breakAfterAcquireFailure">
<value>true</value>
</property>
<!--因性能消耗大请仅仅在须要的时候使用它。假设设为true那么在每
个connection提交的
时候都将校验其有效性。建议使用idleConnectionTestPeriod或
automaticTestTable
等方法来提升连接測试的性能。
Default: false -->
<property name="testConnectionOnCheckout">
<value>false</value>
</property>
</bean>
在里面进行了具体的注解。仅仅要是有一部分JAVA 基础的应该就能看懂
了。剩下的就是在Spring中 使用DataSource 进行调用和使用数据库连
接池了,假设不过要有用的话,全然不用进行 设置了,默认已经设
置好了。
标签:code spring 而不是 优势 try stp art 控制 rtt
原文地址:http://www.cnblogs.com/lytwajue/p/7064277.html