Facing an issue with try-with-resources as it is not closing the database connections automatically particularly for one select query while same is working for other queries of the same class within a java application.We are using hikari connection pool. Please suggest what could be the issue here.
Steps to Reproduce
Execute the problematic select query using the try-with-resources statement.
Monitor the database connections to observe that the connection is not closed.
Execute other queries in the same class to confirm that their connections are closed properly.
Expected Behavior
The database connection should be automatically closed after the try-with-resources block for all queries.
**
Actual Behavior**
The database connection remains open for one specific select query, causing potential resource leaks.
Shilpa Baliyan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.