@RequsetMapping(value = "/hello-request") 은 value에 해당하는 값인 ex) /hello-request이라는 URL 요청이 오면 해당 어노테이션이 붙은 메서드를 실행하도록 매핑한다. @RequestMapping(value = "/hello-request") public String helloRequest() { return "ok"; } 즉, /hello-request로 URL 요청을 하면 helloRequest 메서드가 실행이 된다. method 속성 @RequestMapping(value = "/hello-request", method = RequestMethod.Get) URL 요청 방식이 method에 해당하는 요청 방식과 같아야 매핑을 해주는 역할을 한다. @..