Spring Boot - REST Controllers
What will be the output when accessing the endpoint defined by this REST controller method?
@RestController
public class HelloController {
@GetMapping("/hello")
public String sayHello() {
return "Hello, World!";
}
}