Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用Hibernate池DB。连接未正确关闭。我这样称呼:
Hibernate
DB
HibernateManager.getSessionFactory().getCurrentSession().disconnect();
请帮帮我。
Session.disconnect()不做你认为它做的事:
Session.disconnect()
断开会话与其底层 JDBC 连接的连接。这适用于应用程序已向会话提供 JDBC 连接并且需要长会话(也称为会话)的情况。
通常,您只想关闭()会话或让事务管理层处理获取和关闭连接。