본문 바로가기

JAVA/SPRING

Spring Model Property Exception List

에러내용이 256 out of index bound? 인가 났던거 같다

json object를 post로 서버로 보냈는데 Model Binder가 List를 256까지 밖에 못받아 들였다

구글링 해보니 아래와 같이 셋팅을 해줘야한다더라 힘들다....

해당 Contoller에 

@InitBinder
public void initBinder(WebDataBinder binder) {
    binder.setAutoGrowCollectionLimit(Integer.MAX_VALUE);
}