Hibernate Query.list()
is not included in SharedEntityManagerCreator
's queryTerminatingMethods
set, causing DB connection not to be released when query is proxied
#23248
Labels
Milestone
The queryTerminatingMethods of the SharedEntityManagerCreator class does not contain the "list" method:
In the DeferredQueryInvocationHandler class, when the EntityManager is closed, it is determined whether the method name is in "queryTerminatingMethods":
When org.hibernate.query.Query.list() is used, and QueryImpl and NativeQueryImpl are delegated by DeferredQueryInvocationHandler, the database connection is not released:
The text was updated successfully, but these errors were encountered: