With jdbc/jpa you could emulate non-blocking with ...
# spring
c
With jdbc/jpa you could emulate non-blocking with coroutines or plain Spring
@Async
, this would mostly matter for your servlet thread pool. If I had a situation with many simultaneous connections, I certainly would
👍 1