728x90
데이터 조회 시, 조회 범위를 넓히면 출력은 되나
이클립스가 먹통이 되면서 콘솔창에 한줄의 메세지 외엔 아무것도 뜨지 않았습니다.
[DEBUG][com.bridgetec.common.controller.DispatchController][invoke][493] com.bridgetec.common.controller.DispatchController - [invoke] end, resultMap: {"total":6612,"resultCode":"0000","SVCCOMMONID":{"totCnt":6612,......
그러면서 아래와 같은 에러창이 떴습니다.
an internal error occurred while showing an internal error. you are recommend to exit the workbench. subsequent errors may happen and may terminate the workbench without warning see the .log file for more details
문제 해결 방법은 아래와 같았습니다.
- 이클립스 메모리 추가
- 콘솔 출력버퍼 사이즈 추가
- 해당 로그 출력구문 삭제(실질적으로 조회결과 6600개에 대한 상세정보 전부를 로그로 확인할 이유가없음)
1. 이클립스 메모리 추가
이클립스 설치 폴더 > eclipse.ini 파일 편집
Xms256m -> Xms256m
Xms2048m -> Xmx2048m
2. 콘솔 출력버퍼 사이즈 추가
3. 해당로그 출력구문 삭제
//데이터 조회 터짐으로 주석처리
//loMeLogger.debug(String.format("[invoke] end, resultMap: %s", JsonUtil.convertMapToJson(resultMap)));
728x90
'TOOL > Eclipse' 카테고리의 다른 글
[Eclipse] EWeb Resource Problem Undefined file error 해결방법 (0) | 2023.04.21 |
---|---|
[Eclipse] integrated external tool builder 에러 해결 (0) | 2023.03.31 |
[Eclipse] 이클립스 디버깅 (0) | 2023.01.01 |
[Eclipse] publishing 없이 서버 구동하기 - 빠르게 수정 결과 확인하기 (0) | 2022.12.28 |
[Eclipse] Dynamic Web Project에서 pom.xml 사용하기 (0) | 2022.12.28 |