成功发送到服务器的最后一个数据包是> 70,400,003毫秒之前。比配置的服务器

时间:2017-10-30 08:50:37

标签: java mysql hibernate jpa c3p0

我有以下异常

  

javax.persistence.PersistenceException:Exception [EclipseLink-4002]   (Eclipse Persistence Services - 2.5.2.v20140319-9ad6abd):   org.eclipse.persistence.exceptions.DatabaseException内部   例外:com.mysql.jdbc.exceptions.jdbc4.CommunicationsException:   从服务器成功收到的最后一个数据包是70,400,002   几毫秒之前。成功发送到服务器的最后一个数据包是   70,400,003毫秒之前。比配置的服务器长   'wait_timeout'的值。你应该考虑到期和/或   在您的应用程序中使用前测试连接有效性,增加   服务器配置的客户端超时值,或使用   连接器/ J连接属性'autoReconnect = true'以避免这种情况   问题

我做了一些研究并将persistance.xml更改为

最新

<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.1" xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd">
  <persistence-unit name="unicorn" transaction-type="RESOURCE_LOCAL">
    <provider>org.hibernate.ejb.HibernatePersistence</provider>
    <class>com.rh.xxx</class>
    <properties>
      <property name="hibernate.connection.driver_class" value="com.mysql.jdbc.Driver"/>
      <property name="hibernate.dialect" value="org.hibernate.dialect.MySQLDialect"/>
      <property name="hibernate.connection.url" value="jdbc:mysql://xxx:3306/unicorndb?zeroDateTimeBehavior=convertToNull"/>
      <property name="hibernate.connection.password" value="xxx"/>
      <property name="hibernate.connection.username" value="student"/>
      <property name="hibernate.c3p0.max_size" value="100" />  <!--max number of JDBC connections -->
      <property name="hibernate.c3p0.min_size" value="10" />   <!--minimum number of JDBC connections-->
      <property name="hibernate.c3p0.idle_test_period" value="500" />
      <property name="hibernate.c3p0.acquire_increment" value="1" />
    </properties>
  </persistence-unit>
</persistence>

最新的代码看起来是否正确?

任何帮助将不胜感激

1 个答案:

答案 0 :(得分:0)

首先,让您的测试保持简单,只需使用

即可
<property name="hibernate.c3p0.testConnectionOnCheckout" value="true" />

而不是空闲连接检查。请参阅Connection testing

上的c3p0文档

如果问题,嗯,仍然存在,那么问题可能不是池所持有的连接,而是您的应用程序正在检查并保持无限期打开的一些连接或连接。理想情况下,应该检查,使用Connections,然后立即检查(并且使用try-with-resources或小心finally块进行稳健检查)。