Spring Boot - Spring Annotations
Given the following Spring Boot class, what will be the output when the controller method is called?
@Controller
public class HelloController {
@GetMapping("/hello")
@ResponseBody
public String sayHello() {
return "Hello World";
}
}