Spring Boot - Request and Response Handling
Given this controller method:
@RequestMapping(path = "/test", method = RequestMethod.POST)
public String test() {
return "Success";
}
What happens when a client sends a GET request to "/test"?