Spring Boot - REST Controllers
Find the problem in this REST controller snippet:
@RestController
public class SampleController {
@GetMapping("/info")
public String info() {
System.out.println("Info called");
}
}