https://hello-bryan.tistory.com/347 - 어려운 데이터 controller에서 받기 (file은 그냥 보내고 나머지 자료들은 JSON.stringify 시켜주기) https://howtolivelikehuman.tistory.com/169 - form tag에input 필드들 설정하고 컨트롤러 HttpServletRequest httpServletRequest 에서 값 뽑기 ----------------위에껀 크게 도움 안됨-------------- 스프링에서 {a:a1 ,b:[{b1:b1,b2:b2},{b1:b1,b2:b2}}] } 이 런 족같은 데이터는 쌩 request로 받으면 파싱이 안되고 객체로 받으려하면 타입 안맞는다고 지랄함 @RequestMapping(value = "/test_formdata", method = RequestMethod.POST) @ResponseBody public String testpost(TestFormData testFromData,HttpServletRequest request, Model model) throws URISyntaxException, JsonMappingException, JsonProcessingException { System.out.println("## testFromData: "+testFromData.toString()); return "test_formdata"; } public class TestFormData { private String t1; private List<TestFormData_T2> t2=new ArrayList<TestFormData_T2>(); } - jsp <form id="test_formdata_form"> </form> var formdatate