Spring Boot - REST Controllers
What is wrong with this REST controller method?
@RestController
public class TestController {
@GetMapping("/test")
public String test() {
System.out.println("Test called");
}
}