@PostMapping
HTTP POST 요청을 처리
@RequestMapping(Method=RequestMethod.POST)와 같다.
@Controller
public class HomeController {
@PostMapping("/")
public String home() {
return "home";
}
}
https://standout.tistory.com/478
https://standout.tistory.com/480
https://standout.tistory.com/422
https://standout.tistory.com/183
'JAVA > Spring' 카테고리의 다른 글
Annotation - @Repository (0) | 2023.04.19 |
---|---|
Annotation - @Service (0) | 2023.04.19 |
Annotation - @GetMapping (0) | 2023.04.19 |
Annotation - @RequestMapping (0) | 2023.04.19 |
Annotation - @Controller (0) | 2023.04.19 |