春季应用程序在8小时后失去与MySql的连接。如何正确配置?
我有一个Spring应用程序,我相信它使用DBCP连接池连接到MySql数据库。我说相信,因为这不是一个我非常擅长的领域,如果一切都设置正确,我就不会乐观。我在运行应用程序时没有问题,一切正常。问题在一夜之间发生。该应用程序的使用并不多,一夜之间它显然失去了与MySql的连接。我研究了一下,发现MySql有一个8小时的窗口,然后它断开连接或其他什么。我对此很好,但是当用户尝试在早上登录时,他们会收到如下错误:
通信链路故障。最后一个数据包在 60,000,000ms 前成功接收。最后一个数据包在 15 毫秒前成功设置。
这就是问题所在。我需要他们能够在早上重新连接而不会遇到此问题。我似乎能够修复它的唯一方法是弹跳Tomcat服务器。通过研究它,似乎DBCP池应该能够以某种方式防止这种情况,但我找不到有关如何配置它的可靠信息来源。我希望这里的某个人能为我提供一些见解。这是我当前的配置,全部在Spring xml文件中完成:
应用数据.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<context:annotation-config />
<context:component-scan base-package="com.vz.sts.domain" />
<context:component-scan base-package="com.vz.sts.persistence" />
<context:component-scan base-package="com.vz.sts.service" />
<bean class="org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor" />
<bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="jpaVendorAdapter">
<bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">
<property name="database" value="MYSQL" />
<property name="showSql" value="true" />
</bean>
</property>
</bean>
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver" />
<property name="url" value="jdbc:mysql://localhost:3306/app" />
<property name="username" value="root" />
<property name="password" value="admin" />
<property name="initialSize" value="5" />
</bean>
<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
<property name="entityManagerFactory" ref="entityManagerFactory" />
</bean>
<bean id="jdbcUserService" class="org.springframework.security.provisioning.JdbcUserDetailsManager">
<property name="dataSource" ref="dataSource"/>
<property name="authenticationManager" ref="authenticationManager"/>
</bean>
<bean id="saltSource" class="org.springframework.security.authentication.dao.ReflectionSaltSource">
<property name="userPropertyToUse" value="username" />
</bean>
<tx:annotation-driven />
</beans>
我不确定我需要添加哪些特定属性才能允许应用重新连接到数据库。我不介意它是否在几个小时后关闭连接,但它应该自动重新连接,而不是抛出这样的错误。我甚至也不肯定它实际上被设置为使用连接池。所以任何帮助将不胜感激,谢谢。
更新
我找到了这个页面,我认为我需要做的就是添加 ValidationQuery 属性。任何人都可以验证这是否会产生欲望影响,同时将其他所有内容保留为默认值?我相信这将利用DBCP的testOnBorrow方面。我不完全理解解释说testOnBorrow做了什么,但我认为这将做我想要的。有人确认吗?谢谢。