私は問題に直面しています - 私のアプリケーションではhibernate
、データベースへのアクセスに使用しています。すべてが正常に機能しているように見えますが、アプリケーションを長期間 (~1 日以上) 使用しないと、データベースにアクセスしようとするとエラーが発生します。接続が閉じられていて、singleton
. このクラスのコード:
package cz.cvut.fit.genepi.utils;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
// TODO: Auto-generated Javadoc
/*
* class that handles connection with the database via hibernate
*/
/**
* The Class HibernateUtil.
*/
public class HibernateUtil {
/** The Constant sessionFactory. */
private static final SessionFactory sessionFactory = buildSessionFactory();
/**
* Builds the session factory.
*
* @return the session factory
*/
private static SessionFactory buildSessionFactory() {
try {
// Create the SessionFactory from hibernate.cfg.xml
return new Configuration().configure().buildSessionFactory();
} catch (Throwable ex) {
// Make sure you log the exception, as it might be swallowed
System.err.println("Initial SessionFactory creation failed." + ex);
throw new ExceptionInInitializerError(ex);
}
}
/**
* Gets the session factory.
*
* @return the session factory
*/
public static SessionFactory getSessionFactory() {
if (sessionFactory==null)
buildSessionFactory();
return sessionFactory;
}
/**
* Shutdown.
*/
public static void shutdown() {
// Close caches and connection pools
getSessionFactory().close();
}
}
接続がまだ開いているかどうかを確認する方法はありますか? getSessionFactory().isClosed()
私が探しているのは何ですか?したがって、次のように書くことができます。
public static SessionFactory getSessionFactory() {
if (sessionFactory==null || getSessionFactory().isClosed())
buildSessionFactory();
return sessionFactory;
}
簡単に試すことができることはわかっていますが、問題は、このエラーが生成されるまでにかなりの時間がかかることです。
これが問題の原因であると思わない場合は、ここでスタックトレースを閉じます: http://pastebin.com/6Yigjgt8
hibernate.cfg.xml
:
<?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>
<property name="hibernate.bytecode.use_reflection_optimizer">false</property>
<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
<!-- property name="hibernate.connection.username">root</property>
<property name="hibernate.connection.password">password</property>
<property name="hibernate.connection.url">jdbc:mysql://localhost:2080/genepi</property-->
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
<property name="show_sql">true</property>
<mapping resource="./models/Patient.hbm.xml"></mapping>
<mapping resource="./models/Contact.hbm.xml"></mapping>
<mapping resource="./models/Anamnesis.hbm.xml"></mapping>
</session-factory>
</hibernate-configuration>