Java_웹:hibernate+mysql 시간 초과

1983 단어
mysql 연결이 8시간 동안 유휴되어 있지 않으면 mysql는 자동으로 연결을 끊습니다.
해결 방법:
1, connection url에 매개 변수 추가: autoReconnect=true
jdbc.url=jdbc:mysql://ipaddress:3306/database?autoReconnect=true&autoReconnectForPools=true
2, hibernate를 사용하면 다음과 같은 속성을 추가합니다.
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
        "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
        "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">

<hibernate-configuration>

    <session-factory>
        <!-- Database connection settings -->
        <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
        <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/test</property>
        <property name="hibernate.connection.username">aaa</property>
        <property name="hibernate.connection.password">aaa</property>
		<!-- c3p0 -->
		 <property name="hibernate.connection.provider_class">org.hibernate.connection.C3P0ConnectionProvider</property>
		<property name="hibernate.c3p0.min_size">5</property>
		<property name="hibernate.c3p0.max_size">20</property>
		<property name="hibernate.c3p0.timeout">300</property>
		<property name="hibernate.c3p0.max_statements">50</property>
		<property name="hibernate.c3p0.idle_test_period">3000</property>
		<!-- others -->
		<property name="hibernate.show_sql">true</property>
 		<property name="hibernate.format_sql">true</property>
        <mapping resource="com/xinju/hibernate/Event.hbm.xml"/>

    </session-factory>

</hibernate-configuration>

3, 셸 스크립트를 작성하고tomcat을 정시에 다시 시작합니다.terrible.

좋은 웹페이지 즐겨찾기