Notice
Recent Posts
Recent Comments
«   2024/09   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30
Archives
Today
Total
관리 메뉴

충분히 쌓여가는

@RequestMapping, @GetMapping, @PostMapping 본문

Spring/연습

@RequestMapping, @GetMapping, @PostMapping

빌드이너프 2023. 10. 3. 11:40

@GetMapping

@RequestMapping("/login/login")
@RequestMapping(value="/login/login", method=RequestMethod.GET)
@GetMapping("/login/login)

 

@PostMapping

@RequestMapping(value="/login/login", method= RequestMethod.POST)
@PostMapping("/login/login")

 

하나의 메서드로 GET, POST 둘 다 처리하는 경우

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