http://opensource2.atlassian.com/projec ... se/EJB-122
Hibernate version: 3.1.2+ PATCH HHH-1359
It seems I found the reason why transactions commit & rollback are not handled at all. In the patch for HHH-1359 there is a code for obtaining and closing connections:
Code:
Connection connection = session.connection();
try {
...
} finally {
connection.close();
}
But it seems that connection.close() didn't return the connection to connection pool, even if aggressive release on. How to check this? Or how to rewrite this part of code to support aggressive release?