Spring Boot의 여러가지 Annotations Annotation 의미 @SpringBootApplication Spring boot application으로 설정 @Controller View를 제공하는 controller로 설정 @RestController REST API를 제공하는 controller로 설정 @RequestMapping URL 주소를 매핑 @GetMapping Http Get Method URL 주소 매핑 @PostMapping Http Post Method URL 주소 매핑 @PutMapping Http Put Method URL 주소 매핑 @DeleteMapping Http Delete Method URL 주소 매핑 @RequestParam URL Query Paramet..