충분히 쌓여가는
@RequestMapping, @GetMapping, @PostMapping 본문
@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})
'Spring > 연습' 카테고리의 다른 글
JSP, thymeleaf, text, utext, |(리터럴 치환) (0) | 2023.10.04 |
---|---|
중복된 URL 코드 제거(@RequestMapping) (0) | 2023.10.03 |
매개변수 묶어서 사용(@ModelAtrribute) (0) | 2023.10.02 |
컨트롤러 메서드의 반환타입(String, void, ModelAndView) (0) | 2023.10.02 |
thymeleaf 기본 설정 (0) | 2023.10.02 |