@ModelAttribute 값받을때 null값 나오는 현상 썸네일형 리스트형 [SpringBoot] @ModelAttribute 값받을때 null값 나오는 현상 model public class Star { String name; int age; public Star(String name, int age) { this.name = name; this.age = age; } } 괄호(String name, int age)가 있는 생성자로 만들고 Controller // [Request sample] // POST http://localhost:8080/hello/request/form/model // Header // Content type: application/x-www-form-urlencoded // Body // name=Robbie&age=95 @PostMapping("/form/model") @ResponseBody public String hello.. 더보기 이전 1 다음