Spring Boot - Async Processing
Why does this async method fail to catch exceptions?
@Async
public void runTask() {
try {
throw new IllegalStateException("Fail");
} catch (Exception e) {
System.out.println("Caught: " + e.getMessage());
}
}