Spring Boot - REST Controllers
What is wrong with this controller code?
@RequestMapping("api")
public class ProductController {
@RequestMapping("/list")
public String listProducts() { return "products"; }
}