Spring Boot - Async Processing
Consider this Spring Boot setup:
What is the main problem with this code?
@Configuration
public class AsyncConfig {
@Async
public void runAsync() {
System.out.println("Running async");
}
}What is the main problem with this code?
