Spring Boot - Request and Response Handling
Given this Spring Boot controller method, what will be the response when a GET request is made to
/hello?
@GetMapping("/hello")
public String sayHello() {
return "Hello, Spring!";
}