我使用spring3 hibernate4和struts2构建一个web项目,我使用c3p0,我的项目可以在我的服务器上运行,但是大约10个小时后,tomcat自动停止,我知道这是因为我的配置文件,并且因为我连接了很多文章,但仍然不能正常工作。 有我的配置
<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"
destroy-method="close">
<property name="driverClass" value="${jdbc.driverClass}" />
<property name="jdbcUrl" value="${jdbc.jdbcUrl}" />
<property name="user" value="${jdbc.user}" />
<property name="password" value="${jdbc.password}" />
<property name="initialPoolSize" value="3" />
<property name="minPoolSize" value="3" />
<property name="maxPoolSize" value="50" />
<property name="maxIdleTime" value="7200" />
<property name="maxStatements" value="200" />
<property name="idleConnectionTestPeriod" value="270" />
<property name="preferredTestQuery">
<value>SELECT 1</value>
</property>
</bean>
我在日志文件中看到了一些像这样的警告
05-Apr-2016 18:30:32.497 WARN [localhost-startStop-1] org.hibernate.engine.jdbc.internal.JdbcServicesImpl.configure HHH000342: Could not obtain connection to query metadata : An attempt by a client to checkout a Connection has timed out.
当我关闭tomcat时会出现一些错误 enter image description here
答案 0 :(得分:0)
添加此属性:
<property name="testConnectionOnCheckout " value="true" />
并查看c3p0
有关如何test connection了解更多详情的{{1}}步骤