반응형

전정프 3

전자정부프레임워크 Exception 관리 ExceptionHandler 적용 방법

1. ExceptionHandler 클래스 생성 , 전정프 AbstractAnnotationExceptionHandler 상속 - 전자정부프레임워크의 AbstractAnnotationExceptionHandler public abstract class AbstractAnnotationExceptionHandler { /** * Default Exeption handler. * @param e Exception class type * @return ModelAndView object */ @ExceptionHandler(Exception.class) public abstract ModelAndView handleException(Exception e); /** * Default RuntimeExceptio..

ckeditor5 ck에디터5 javascript java 자바스크립트 자바 이미지 업로드 사용 방법

1. javascript ClassicEditor .create( document.querySelector( '#editor1' ), { toolbar: { items: [ 'heading', '|', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', '|', 'indent', 'outdent', '|', 'imageUpload', 'blockQuote', 'insertTable', 'mediaEmbed', 'undo', 'redo', 'exportPdf', 'fontBackgroundColor', 'fontColor', 'fontSize', 'fontFamily', 'highlight', 'horizontalLine', 'underline', ] }..

전자정부 프레임워크 전정프 spring 리스트 최대 개수 늘리기

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(1..

반응형