Caused by: java.sql.SQLNonTransientConnectionException: No operations allowed after connection closed.
时间: 2023-10-14 15:04:47 浏览: 121
No operations allowed after statement closed.
这个错误通常是由于数据库连接在使用后未正确关闭导致的。在使用完数据库连接后,应该显式地关闭连接,以释放资源并避免出现此类异常。可以在代码中使用try-with-resources语句来自动关闭连接,或者在finally块中手动关闭连接。另外,检查连接池配置是否正确,以确保连接池中的连接可以正确地被使用和关闭。
阅读全文