gaolei
03/17/2024, 7:43 PMAsyncContext ctx = startAsync()
try {
.....
....
} catch all {
} finally {
ctx.complete()
}
However, somehow if I forgot to call ctx.complete() then my database connection pool can run exhausted. Can anybody enlighten me why is this? If instead I use HikariCP to replace the default connection pool, will this help?
Thanksgaolei
03/18/2024, 1:42 AM