Spring Boot - Async Processing
Why does this async method not run asynchronously?
@Async
public void call() {
this.call();
}Why does this async method not run asynchronously?
@Async
public void call() {
this.call();
}thisthis.call() bypasses the proxy, so @Async is ignored and method runs synchronously.this bypasses Spring proxy and disables async -> Option A15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions