我正在使用JNDI和Tomcat6来管理MysqL连接,我的Catalina / domain.com / ROOT.xml有:
<Resource name="jdbc/db" auth="Container" type="javax.sql.DataSource" username="db1" password="somepass" driverClassName="com.MysqL.jdbc.Driver" url="jdbc:MysqL://localhost:3306/db?autoReconnect=true" maxActive="15" maxIdle="3" maxWait="5000" removeAbandoned="true" removeAbandonedTimeout="20" />
我虽然autoReconnect将重新连接到数据库,但它没有,在大约8小时不活动后,我的应用程序吐出丢失的数据库错误连接.有任何想法吗?
谢谢,Fedor
解决方法
不要使用autoReconnect.它和
it’s been deprecated有问题.例如,当线程使用连接时,您可能会发生断开连接/重新连接事件.在将它们传递给应用程序之前,我会将测试连接与testOnBorrow连接起来.这是一个例子:
<Resource name="jdbc/db" auth="Container" type="javax.sql.DataSource" username="db1" password="somepass" driverClassName="com.MysqL.jdbc.Driver" url="jdbc:MysqL://localhost:3306/db" maxActive="15" maxIdle="3" maxWait="5000" removeAbandoned="true" removeAbandonedTimeout="20" logAbandoned="true" factory="org.apache.tomcat.dbcp.dbcp.BasicDataSourceFactory" validationQuery="select 1" minEvictableIdleTimeMillis="3600000" timeBetweenEvictionRunsMillis="1800000" numTestsPerEvictionRun="10" testWhileIdle="true" testOnBorrow="true" testOnReturn="false" />