Spring Boot - REST Controllers
What is wrong with this controller code?
@RestController
@RequestMapping("/api")
public class DemoController {
@RequestMapping
public String home() { return "Home"; }
}