Spring Boot - Request and Response Handling
Given this controller method:
What will be the response when a GET request is sent to "/info"?
@RequestMapping(path = "/info", method = RequestMethod.GET)
public String getInfo() {
return "Info Page";
}What will be the response when a GET request is sent to "/info"?
