1

Web アプリケーションで struts2+hibernate3 を使用しています。正常に動作しています。時々、接続を開けませんと表示されます。アクションクラスで休止状態に接続するための接続ステートメントに従います。

protected SessionFactory getSessionFactory() {
    try {  

        Configuration cfg = new Configuration(); 
        cfg.configure("hibernate.cfg.xml"); 
        SessionFactory factory = cfg.buildSessionFactory(); 
        return factory; 

    } catch (Exception e) {
        log.error("sessionFactory", e);
        throw new IllegalStateException(
                "Could not locate SessionFactory");
    }
}
    public List viewAllPromotion() {
        System.out.println("finding student instance");
        try {
            Session session = sessionFactory.openSession();
            System.out.println("View All Student"); 
            session.beginTransaction(); 
            List results = session.createQuery("from   Student").list();  
            System.out.println("List got Rsults:"+results.size());

            session.close();  
            return results; 


        } catch (RuntimeException re) {  
            log.error("find by example failed", re);
            throw re;  
        }
    }

休止状態構成ファイル:

 <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.url">jdbc:mysql://localhost:3306/marksheet</property>
    <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>  
    <property name="hibernate.connection.username">root</property>
    <property name="hibernate.connection.password">admin</property>
    <property name="hibernate.search.autoregister_listeners">false</property>  
    <property name="hibernate.session_factory_name">MySessionFactory</property> 
    <property name="current_session_context_class">thread</property> 
    <property name="hibernate.transaction.factory_class">org.hibernate.transaction.JDBCTransactionFactory</property>
    <property name="hibernate.connection.pool_size">10</property>

    <property name="show_sql">true</property>
    <mapping resource="com/rewardz/model/student.hbm.xml" />   
    <mapping resource="com/rewardz/model/course.hbm.xml" />              
    <mapping resource="com/rewardz/model/subject.hbm.xml" />  
    <mapping resource="com/rewardz/model/staff.hbm.xml" />  
    <mapping resource="com/rewardz/model/Role.hbm.xml" />  
    <mapping resource="com/rewardz/model/Privilege.hbm.xml" />  
    <mapping resource="com/rewardz/model/Logtab.hbm.xml" />  
</session-factory>

さらにトランザクションを行うと、次のエラー メッセージが表示されます。

   HTTP Status 500 - type Exception report

   message

        descriptionThe server encountered an internal error () that prevented it from fulfilling this request.

   exception

        org.hibernate.exception.JDBCConnectionException: Cannot open connection

注: 例外の完全なスタック トレースとその根本原因は、GlassFish Server Open Source Edition 3.1.1 ログで入手できます。

誰でもこの問題を解決するのを手伝ってもらえますか? 前もって感謝します。

4

1 に答える 1

0

スタック トレースを投稿する必要があります。何が間違っているかについてもっと教えてくれると思います。

また、c3p0 や bonecp などの接続プールを使用してみてください。これらのライブラリのいずれかを使用しないと、長時間開いた後に接続がタイムアウトするなど、奇妙な接続の問題が発生する可能性があります。

于 2012-02-10T06:21:43.837 に答える