Spring Boot - REST Controllers
Given the following code, what will be the output when accessing
/hello endpoint?
@RestController
public class HelloController {
@GetMapping("/hello")
public String sayHello() {
return "Hello, Spring!";
}
}