반응형
nested exception is java.lang.IndexOutOfBoundsException:Index: 256, Size: 256 오류 메세지
전자정부 프레임워크 공통 컴포넌트를 생성하면 자동으로 생기는 EgovBindingInitializer.java 파일에
binder.setAutoGrowNestedPaths(true);
binder.setAutoGrowCollectionLimit(100000); 를 추가하면 된다. (리스트 최대 개수)
public void initBinder(WebDataBinder binder, WebRequest request) {
binder.setAutoGrowNestedPaths(true); //추가
binder.setAutoGrowCollectionLimit(100000); //추가
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
dateFormat.setLenient(false);
binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, false));
binder.registerCustomEditor(String.class, new StringTrimmerEditor(false));
}
EgovBindingInitializer는 전자정부 프레임워크의 egov-com-servlet.xml 에 정의되어있다.
<bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">
<property name="webBindingInitializer">
<bean class="egovframework.com.cmm.web.EgovBindingInitializer"/>
</property>
</bean>
반응형
'Web Spring 전정프' 카테고리의 다른 글
이클립스 eclipse 자바스크립트 복사 렉 해결 (0) | 2020.11.23 |
---|---|
Access-Control-Allow-Origin 문제 해결 방법 (0) | 2020.11.20 |
ckeditor ck에디터 잘못된 서버 응답 오류 해결 방법 (0) | 2020.11.18 |
체크박스 checkbox 전체선택 해제 스크립트 javascript (0) | 2020.11.17 |
Eclipse 이클립스 maven 메이븐 충돌 conflict (0) | 2020.11.16 |