Spring中,配制commons-dbcp数据源

网上很多说,DBCP有BUG.其实这都是使用不深入的缘故.经本人研究,BUG是因为没有设置TEST属性造成.导致CONNECTION无法严整有效性.在每个数据源后面, 本人加上了相关Test代码.
本人亲测mysql5.1和sql server 2005,如有问题,请留言,我一定会第一时间帮大家解决^-^

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">




com.mysql.jdbc.Driver


jdbc:mysql://192.168.0.34:3306/cold


root


123456



10


10


100


100


select count(*) from dual


true


true


true



60000



300000






com.microsoft.sqlserver.jdbc.SQLServerDriver


jdbc:sqlserver://192.168.0.30:1135;DatabaseName=IceData


sa


123456



10


10


100


100


select getdate()


true


true


true


60000


300000


你可能感兴趣的:(spring)