Spring Boot - Request and Response Handling
What is wrong with this Spring Boot controller method that causes it to not handle requests properly?
@GetMapping("/data")
public void getData() {
System.out.println("Data requested");
}