@RestController
public class HelloWorldController {
// GET
// /hello-world (end point)
// @RequestMapping(method=RequestMethod.GET, path="/hello-world") -> Legacy 방법.
@GetMapping(path = "/hello-world")
public String helloWorld() {
return "hello world";
}
}
보통 RESTful API에서는 위에 보이는 GET, POST, PUT, PATCH, DELETE 메소드를 사용하게 된다.