Spring Boot - REST Controllers
Given this Spring Boot controller method, what will be the response to a POST request to "/hello"?
@PostMapping("/hello")
public String greet() {
return "Hello World!";
}