@RequestMapping 어노테이션 - URL 을 컨트롤러의 메서드와 매핑할 때 사용하는 어노테이션 - 요청 주소(url) 설정, 요청 방식(GET, POST, DELETE, PATCH) 설정 - 요청방식들을 동시에 설정 가능 @RequestMapping(value = "/test7", method = {RequestMethod.GET, RequestMethod.POST}) @GetMapping / @PostMapping 어노테이션 - 요청방식별로 제공되는 어노테이션 더보기 localhost:8080/MySpringProj01/bear01/test01 => GET 방식만 사용 가능localhost:8080/MySpringProj01/bear01/test02 => POST 방식만 사용 가능localho..