
[Spring] 스프링 프레임워크 GET, POST
Spring
2022. 7. 21. 19:16
최근 스프링 프레임워크를 공부하고 있는데, 공부했던 내용을 간단히 포스팅해보려고 한당! 먼저 스프링부트의 어노테이션 종류를 표로 정리해봤다. # Spring Boot Annotations @SpringBootApplication SpringBootApplication으로 설정 @RestController REST API를 제공하는 controller로 설정 @RequestMapping URL주소를 맵핑 @GetMapping Http GetMethod URL 주소 맵핑 @PostMapping Http PostMethod URL 주소 맵핑 @PutMapping Http PutMethod URL 주소 맵핑 @DeleteMapping Http DeleteMethod URL 주소 맵핑 @RequestParam U..