Java/Hibernate - 异常:内部连接池已达到其最大大小,当前没有可用的连接

Posted

技术标签:

【中文标题】Java/Hibernate - 异常:内部连接池已达到其最大大小,当前没有可用的连接【英文标题】:Java/Hibernate - Exception: The internal connection pool has reached its maximum size and no connection is currently available 【发布时间】:2016-12-22 00:05:05 【问题描述】:

我是第一次在大学项目中使用 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 类(我将省略 getter 和 setter):

@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 属性,但如果我这样做,似乎只会得到更多错误。有人可以帮我吗?

【问题讨论】:

如果你已经通过getCurrentSession()获得了会话,请不要使用session.close()。这可能会耗尽您的连接池。 感谢您的回答,但没有奏效。仍然遇到同样的异常。 那说明你的连接池真的用尽了所有的连接,是不是有太多长时间运行的数据库调用? 这是我第一次也是唯一一次(至少目前是)数据库调用。 【参考方案1】:

试试这个:

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 中没有那个连接池属性。

【讨论】:

感谢您的回答,但仍然没有结果。 @Alessandro 您是否尝试从配置 xml 中删除该属性? @Alessandro 而不是在 POJO 类中使用 save 方法,您可以尝试在 main 方法中使用它吗? 是的,现在它给了我一些例外,首先是:ERROR: could not read a hi value com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'allarmidomesticidb.hibernate_sequence' doesn't exist 然后:Exception in thread "main" org.hibernate.exception.SQLGrammarException: error performing isolated work 我应该先手动创建一些表吗? 我的最后一条评论是从 xml 文件中删除属性后的回复。现在我将尝试移动“保存”方法。【参考方案2】:

您的连接池已用尽连接,因为您在池中使用单个连接。

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

将此属性更改为您喜欢的内容,例如100

【讨论】:

再次感谢您的回答,但正如我在原帖中所说,它似乎没有帮助。【参考方案3】:
<property name="connection.pool_size">1</property>

尝试将连接池大小更改为更大的大小,例如 100 左右。

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

【讨论】:

这似乎是this existing answer的重复。

以上是关于Java/Hibernate - 异常:内部连接池已达到其最大大小,当前没有可用的连接的主要内容,如果未能解决你的问题,请参考以下文章

连接池中没有合适的驱动程序异常

连接池和 "Timeout expired"异常

如何修复 c3p0 连接池初始化异常?

druid连接池使用过程遇到的一个奇怪异常

一次c3p0连接池连接异常错误的排查

AtomikosSQLException:连接池已耗尽 - 每当应用程序抛出异常时,连接就会耗尽