Spring Boot - REST Controllers
Given the controller class below, what is the full URL path to access the
getUser() method?@RequestMapping("/api")
public class UserController {
@RequestMapping("/user")
public String getUser() { return "user"; }
}