これは私がウェブ全体で見た問題です。今まで同じ修正がなかったので、もう一度取り上げます。
I am using hibernate 3. mysql 5 and latest c3p0 jar. I am getting a broken pipe exception. Following is my hibernate.cfg file.
com.mysql.jdbc.Driver org.hibernate.dialect.MySQLDialect
<property name="hibernate.show_sql">true</property>
<property name="hibernate.use_sql_comments">true</property>
<property name="hibernate.current_session_context_class">thread</property>
<property name="connection.autoReconnect">true</property>
<property name="connection.autoReconnectForPools">true</property>
<property name="connection.is-connection-validation-required">true</property>
<!--<property name="c3p0.min_size">5</property>
<property name="c3p0.max_size">20</property>
<property name="c3p0.timeout">1800</property>
<property name="c3p0.max_statements">50</property>
--><property name="hibernate.connection.provider_class">org.hibernate.connection.C3P0ConnectionProvider
</property>
<property name="hibernate.c3p0.acquireRetryAttempts">30</property>
<property name="hibernate.c3p0.acquireIncrement">5</property>
<property name="hibernate.c3p0.automaticTestTable">C3P0TestTable</property>
<property name="hibernate.c3p0.idleConnectionTestPeriod">36000</property>
<property name="hibernate.c3p0.initialPoolSize">20</property>
<property name="hibernate.c3p0.maxPoolSize">100</property>
<property name="hibernate.c3p0.maxIdleTime">1200</property>
<property name="hibernate.c3p0.maxStatements">50</property>
<property name="hibernate.c3p0.minPoolSize">10</property>-->
接続プールは正常に発生しています。日中は問題ありませんが、一晩中アイドル状態にしておくと、翌日、接続が切断されたというエラーが発生します。
パブリッククラスHibernateUtil{
private static Logger log = Logger.getLogger(HibernateUtil.class);
//private static Log log = LogFactory.getLog(HibernateUtil.class);
private static Configuration configuration;
private static SessionFactory sessionFactory;
static {
// Create the initial SessionFactory from the default configuration files
try {
log.debug("Initializing Hibernate");
// Read hibernate.properties, if present
configuration = new Configuration();
// Use annotations: configuration = new AnnotationConfiguration();
// Read hibernate.cfg.xml (has to be present)
configuration.configure();
// Build and store (either in JNDI or static variable)
rebuildSessionFactory(configuration);
log.debug("Hibernate initialized, call HibernateUtil.getSessionFactory()");
} catch (Throwable ex) {
// We have to catch Throwable, otherwise we will miss
// NoClassDefFoundError and other subclasses of Error
log.error("Building SessionFactory failed.", ex);
throw new ExceptionInInitializerError(ex);
}
}
/**
* Returns the Hibernate configuration that was used to build the SessionFactory.
*
* @return Configuration
*/
public static Configuration getConfiguration() {
return configuration;
}
/**
* Returns the global SessionFactory either from a static variable or a JNDI lookup.
*
* @return SessionFactory
*/
public static SessionFactory getSessionFactory() {
String sfName = configuration.getProperty(Environment.SESSION_FACTORY_NAME);
System.out.println("Current s name is "+sfName);
if ( sfName != null) {
System.out.println("Looking up SessionFactory in JNDI");
log.debug("Looking up SessionFactory in JNDI");
try {
System.out.println("Returning new sssion factory");
return (SessionFactory) new InitialContext().lookup(sfName);
} catch (NamingException ex) {
throw new RuntimeException(ex);
}
} else if (sessionFactory == null) {
System.out.println("calling rebuild session factory now");
rebuildSessionFactory();
}
return sessionFactory;
}
/**
* Closes the current SessionFactory and releases all resources.
* <p>
* The only other method that can be called on HibernateUtil
* after this one is rebuildSessionFactory(Configuration).
*/
public static void shutdown() {
log.debug("Shutting down Hibernate");
// Close caches and connection pools
getSessionFactory().close();
// Clear static variables
sessionFactory = null;
}
/**
* Rebuild the SessionFactory with the static Configuration.
* <p>
* Note that this method should only be used with static SessionFactory
* management, not with JNDI or any other external registry. This method also closes
* the old static variable SessionFactory before, if it is still open.
*/
public static void rebuildSessionFactory() {
log.debug("Using current Configuration to rebuild SessionFactory");
rebuildSessionFactory(configuration);
}
/**
* Rebuild the SessionFactory with the given Hibernate Configuration.
* <p>
* HibernateUtil does not configure() the given Configuration object,
* it directly calls buildSessionFactory(). This method also closes
* the old static variable SessionFactory before, if it is still open.
*
* @param cfg
*/
public static void rebuildSessionFactory(Configuration cfg) {
log.debug("Rebuilding the SessionFactory from given Configuration");
if (sessionFactory != null && !sessionFactory.isClosed())
sessionFactory.close();
if (cfg.getProperty(Environment.SESSION_FACTORY_NAME) != null) {
log.debug("Managing SessionFactory in JNDI");
cfg.buildSessionFactory();
} else {
log.debug("Holding SessionFactory in static variable");
sessionFactory = cfg.buildSessionFactory();
}
configuration = cfg;
}
}
上記はセッションファクトリの私のコードです。そして、私は選択した操作しか持っていません。
そして、以下は私の選択クエリを実行するために最も頻繁に使用されるメソッドです。私が理解していないトリッキーなことの1つは、findByIdメソッドで、このコード行getSession()。beginTransaction();を使用していることです。それがないと、これはトランザクションなしでは起こり得ないというエラーが発生します。しかし、私はこの取引をどこにも閉じていません。そして、selectステートメントには適用できないコミットまたはロールバック(私が知る限り)を除いて、トランザクションを閉じる方法はありません。
public T findById(ID id、boolean lock)throws HibernateException、DAOException {log.debug( "findNyId invoke with ID =" + id + "and lock =" + lock); Tエンティティ; getSession()。beginTransaction();
if (lock)
entity = (T) getSession().load(getPersistentClass(), id, LockMode.UPGRADE);
else
entity = (T) getSession().load(getPersistentClass(), id);
return entity;
}
誰かが私に何ができるか提案してもらえますか?私は、グーグル、stackoverlow、または休止状態のフォーラムで利用可能なほぼすべてのソリューションを試しましたが、役に立ちませんでした。(そして、mysqlでwait_timeoutを増やすことは、私の場合は有効なオプションではありません)。