Controller.class public class HelloController { @RequestMapping(value = "/hello", method = RequestMethod.GET) public String helloGet(...) { ... } @RequestMapping(value = "/hello", method = RequestMethod.POST) public String helloPost(...) { ... } @RequestMapping(value = "/hello", method = RequestMethod.PUT) public String helloPut(...) { ... } @RequestMapping(value = "/hello", method = RequestMeth..