@RequestMapping 과 @GetMapping 차이

2021. 2. 11. 23:20Spring Boot

반응형

버전업되면서 @RequestMapping으로 길게 써야 했던 코드를 @GetMapping 로 짧게 쓸 수 있게 되었다! 

 

 

@RequestMapping(value = "/getList", method = { RequestMethod.POST })

 

@PostMapping("/getList")

 

반응형