作者:
<bean />
<!--other properties -->
</bean>
3. 定期使用连接池内的连接,使得它们不会因为闲置超时而被 MySQL 断开。
修改 c3p0 的配置文件,设置:
# Prevent MySQL raise exception after a long idle timecpool.preferredTestQuery='SELECT 1'cpool.idleConnectionTestPeriod=18000cpool.testConnectionOnCheckout=true
修改 Spring 的配置文件:
<bean />
<!--other properties --></bean>
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:mysql自动断开该连接解决方案 - Python技术站