Spring
-
Spring json Object 처리시 256개까지 객체를 던질수있음Spring 2017. 5. 29. 22:18
json 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) -> 갯수를 늘리는 형식으로 접근해야함.