Spring Boot - Async Processing
Why does this scheduled method cause an error?
@Scheduled(fixedRate = 1000)
private void doWork() {
System.out.println("Working");
}