
https://ocblog.tistory.com/49 Spring / @RequestBody vs @RequestParam 이해하기컨트롤러에서 데이터를 인자에 할당하는 대표적인 방법으로는 @RequestBody 와 @RequestParam 이 있다. @Controller public class UserController { @PostMapping("/receive") public String age(@RequestParam String name) { System.out.prinocblog.tistory.com