Bel Connection.setNetworkTimeout()
in een poging-eindelijk .
private final static Executor immediateExecutor = Runnable::run;
try ( Connection connection = pool.getConnection() ) {
int timeout = connection.getNetworkTimeout();
connection.setNetworkTimeout(immediateExecutor, TimeUnit.SECONDS.toMillis(5));
...
try (PreparedStatement...) {
...
}
finally {
connection.setNetworkTimeout(timeout);
}
}
finally {
...
}
U heeft last van onbevestigd TCP-verkeer, waardoor een verbinding kan worden verbroken als er geen netwerktime-out is ingesteld.