Tomcat needs to be restarted after restarting the database

I have a webapp deployed in Tomcat 7. There I created my database pool setup as shown below.

<Resource name="UserDatabase" auth="Container"
          type="org.apache.catalina.UserDatabase"
          description="User database that can be updated and saved"
          factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
          pathname="conf/tomcat-users.xml" />

<Resource type="javax.sql.DataSource"
   name="jdbc/TEST"
   factory="org.apache.tomcat.jdbc.pool.DataSourceFactory"
   driverClassName="com.mysql.jdbc.Driver"
   url="jdbc:mysql://localhost:3306/testdb?zeroDateTimeBehavior=convertToNull"
   username="test"
   password="test"
   initialSize="10"
   maxActive="100"
   maxIdle="50"
   minIdle="10"/>

      

This configuration works fine. But I want to set up my database pool to automatically connect the database server when the database server once started and started again.

+3


source to share


2 answers


I found the answer to this problem. Below config did the job.



<Resource type="javax.sql.DataSource"
   name="jdbc/TEST"
   factory="org.apache.tomcat.jdbc.pool.DataSourceFactory"
   driverClassName="com.mysql.jdbc.Driver"
   url="jdbc:mysql://localhost:3306/testdb?zeroDateTimeBehavior=convertToNull"
   validationQuery="select 1"
   validationInterval="30000"
   testWhileIdle="true"
   testOnBorrow="true"
   testOnReturn="false"
   username="test"
   password="test"
   initialSize="10"
   maxActive="100"
   maxIdle="50"
   minIdle="10"/>

      

0


source


Try adding

? AutoReconnect = true



in your url.

+1


source







All Articles