小编典典

Mysql不与JNDI Tomcat 6重新连接

tomcat

我将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


阅读 270

收藏
2020-06-16

共1个答案

小编典典

不要使用autoReconnect。它有问题,已经过时了。例如,当线程正在使用连接时,您可能发生断开/重新连接事件。相反,在将连接池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"
          />
2020-06-16