web-dev-qa-db-ja.com

Java / Hibernate-例外:内部接続プールが最大サイズに達し、現在使用可能な接続がありません

私は大学のプロジェクトで初めてHibernateを使用していますが、私は少し初心者です。私は私の教授と私が読んだいくつかのチュートリアルによって与えられたすべての指示に従っていたと思いますが、タイトルにある例外が発生し続けます:

Exception in thread "main" org.hibernate.HibernateException: The internal connection pool has reached its maximum size and no connection is currently available!

私がやろうとしていることは、単にオブジェクトを格納することです(AbitazioneDB)作成済みのMySqlデータベースに。これは私の設定ファイルです:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
    "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
    "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">

<hibernate-configuration>
    <session-factory>
        <!-- Connection to the database -->
        <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
        <property name="connection.url">jdbc:mysql://localhost:3306/AllarmiDomesticiDB</property>

        <!-- Credentials -->
        <property name="hibernate.connection.username">root</property>
        <property name="connection.password">password</property>

        <!-- JDBC connection pool (use the built-in) -->
        <property name="connection.pool_size">1</property>

        <!-- SQL dialect -->
        <property name="dialect">org.hibernate.dialect.MySQLDialect</property>

        <!-- Enable Hibernate's automatic session context management -->
        <property name="current_session_context_class">thread</property>

        <!-- Disable the second-level cache  -->
        <property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property>

        <property name="show_sql">true</property>

        <!-- Entity -->

        <mapping class="it.allarmiDomestici.centraleOperativaRemota.dbWrapper.AbitazioneDB" />

    </session-factory>
</hibernate-configuration>

これは私の AbitazioneDB クラス(ゲッターとセッターは省略します):

@Entity
@Table(name="abitazioni")
public class AbitazioneDB {

    @Id
    @GeneratedValue
    @Column(name="id")
    private Integer id;

    @Column(name="indirizzo")
    private String indirizzo;

    @Column(name="nome_proprietario")
    private String nomeProprietario;

    @Column(name="tel_proprietario")
    private String telProprietario;

    public AbitazioneDB(){
        super();
    }

    public AbitazioneDB save(){

        SessionFactory sf = HibernateUtil.getSessionFactory();
        Session session = sf.getCurrentSession();
        session.beginTransaction();

        Integer id = (Integer) session.save(this);
        this.setId(id);

        session.getTransaction().commit();      
        session.close();

        return this;
    }
}

これは私の HibernateUtil クラス:

public class HibernateUtil {

    private static SessionFactory sessionFactory;

    private static SessionFactory createSessionFactory() {
        sessionFactory = new Configuration().configure().buildSessionFactory();
        return sessionFactory;
    }

    public static SessionFactory getSessionFactory() {
        if (sessionFactory == null)
            sessionFactory = createSessionFactory();

        return sessionFactory;
    }
}

そして、これは私のです TestHibernate クラス、mainメソッドを使用:

public class TestHibernate {

    public static void main(String[] args) {
        AbitazioneDB ab = new AbitazioneDB();

        ab.setIndirizzo("Via Napoli, 29");
        ab.setNomeProprietario("Mario Rossi");
        ab.setTelProprietario("3333333333");

        ab.save();

        System.out.println("Ok!");

    }
}

私が走るとき TestHibernate 私はいつもその例外を受け取り、なぜなのかわかりません。多分私はconnection.pool_sizeプロパティですが、そのようにすると、エラーが増えるだけのようです。誰かが私を助けてくれますか?

9
Alessandro

これを試して :

HibernateUtil:

public static Session getHibernateSession() {

    final SessionFactory sf = new Configuration()
        .configure("yourConfig.cfg.xml").buildSessionFactory();

    // factory = new Configuration().configure().buildSessionFactory();
    final Session session = sf.openSession();
    return session;
    }

そしてSessionFactoryを使用する代わりにSessionを使用します:

final Session session = HibernateUtil.getHibernateSession();

次に使用します:

 Transaction tx = session.beginTransaction();
 // all your methods
 tx.commit();
 session.close();

お役に立てれば。

そして、あなたがそれを必要としないならば、あなたは実際にあなたのhbmにその接続プールプロパティを持つことができません。

9
Pritam Banerjee

プールで単一の接続を使用しているため、接続プールは接続を使い果たしました。

<property name="connection.pool_size">1</property>

このプロパティを100のような使いやすいものに変更します

12
11thdimension
<property name="connection.pool_size">1</property>

接続プールのサイズを100などの大きなサイズに変更してみてください。

<property name="connection.pool_size">100</property>
5
user5575385