-
Spring json Object 처리시 256개까지 객체를 던질수있음Spring 2017. 5. 29. 22:18json Object 처리시 256개까지 객체를 던질수있는데해당 객체의 개수를 늘릴려면 ,
@InitBinder protected void initBinder(WebDataBinder binder) { binder.setAutoGrowNestedPaths(true); // insert this line binder.setAutoGrowCollectionLimit(5000); // insert thist line }//JSON Object 처리시 기본 256개 까지 바인딩 처리가 가능한데 해당 옵션을 5000개로 늘리는 설정 문, 설정시 true 처리로 초기화시켜주지 않으면, 에러가 날수있음
와같이 먼져 초기화처리 (true) -> 갯수를 늘리는 형식으로 접근해야함.'Spring' 카테고리의 다른 글
cannot change the executor type when there is an existing transaction (0) 2019.04.10 웹페이지에서 Layout 처리 하기 위하여 표기 방법 (0) 2017.06.12 Json Date Log를 보기 쉽게 하는법 (0) 2017.06.12 Spring Boot Banner 처리 하기 (0) 2017.06.12 pom.xml에서 plugin 오류가 날시에 m2e를 못찾는다는(not suport) 문구출력시 (0) 2017.05.29