@RequestMapping 과 @GetMapping 차이
2021. 2. 11. 23:20ㆍSpring Boot
반응형
버전업되면서 @RequestMapping으로 길게 써야 했던 코드를 @GetMapping 로 짧게 쓸 수 있게 되었다!
전
@RequestMapping(value = "/getList", method = { RequestMethod.POST })
후
@PostMapping("/getList")
반응형
'Spring Boot' 카테고리의 다른 글
스프링부트 페이징 , 정렬 (0) | 2021.03.10 |
---|---|
스프링부트 https 적용, http to https 리디렉션 적용 (0) | 2021.02.26 |
스프링 빈 순환 참조 - The dependencies of some of the beans in the application context form a cycle (0) | 2021.02.11 |
스프링부트 서브쿼리 (0) | 2021.02.04 |
스프링부트 ec2에 배포하기 (0) | 2021.02.01 |