728x90
반응형
한글 깨짐
실행했더니 많은 로그가 있는데 한글이 깨지는 현상이 있습니다.
반응형
한글 인코딩 해결
tomcat이 설치된 디렉토리/conf/logging.preperties 파일을 수정하겠습니다
logging.properties
java.util.logging.ConsoleHandler.level = FINE
java.util.logging.ConsoleHandler.formatter = org.apache.juli.OneLineFormatter
java.util.logging.ConsoleHandler.encoding = UTF-8
해당 파일을 내려보면 해당 부분이 있는데 여기의 인코딩을 수정할겁니다
logging.properties
java.util.logging.ConsoleHandler.encoding = EUC-KR
인코딩을 EUC-KR로 수정하고 저장합니다
다시 실행하면 로그에 정상적으로 한글이 출력됩니다
IntelliJ community 버전
community 버전으로 실행해보니 한글이 깨지는 오류가 발생했습니다.
Edit Configurations...을 클릭하고
-Dfile.encoding=EUC-KR
VM options에 다음과 같이 입력하니 해결됐습니다
반응형
'Spring' 카테고리의 다른 글
[tomcat] error running tomcat can't find catalina.jar (1) | 2024.07.23 |
---|---|
[Spring Boot] JPA @Transactional과 변경 감지 Update (0) | 2024.07.11 |
[SpringBoot] DI 생성자 주입 (1) | 2023.10.26 |
[SpringBoot] 프로젝트 빌드 및 실행 (0) | 2023.10.17 |
[SpringBoot/Thymeleaf] ajax 회원가입 중복체크 2 (0) | 2022.06.28 |