我正在使用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
答案 0 :(得分:14)
不要使用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"
/>