Spring Boot - Async Processing
Identify the error in this Spring Boot async method:
@Async
public void process() {
CompletableFuture result = CompletableFuture.supplyAsync(() -> {
throw new RuntimeException("Fail");
});
System.out.println(result.get());
} 