You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to have the option to delay closing the connection pool on server shutdown. This would be used to do database inserts/updates when the server is shutting down:
@EventListener public void onApplicationShutdown(ApplicationShutdownEvent event) { //Do some db operation }
Currently when this is run, the connection pool is already closed.
The text was updated successfully, but these errors were encountered:
Hi,
I would like to have the option to delay closing the connection pool on server shutdown. This would be used to do database inserts/updates when the server is shutting down:
@EventListener public void onApplicationShutdown(ApplicationShutdownEvent event) { //Do some db operation }
Currently when this is run, the connection pool is already closed.
The text was updated successfully, but these errors were encountered: