[java] log4j 콘솔에서 한글 깨짐 수정

Published: by Creative Commons Licence

log4j2 한글 출력 인코딩 설정

log4j2.xml 설정파일에서 콘솔의 <PatternLayout>charset="UTF-8" 설정 추가하면 끝

<?xml version="1.0" encoding="UTF-8"?>
<Configuration>
    <Appenders>
        <Console name="console" target="SYSTEM_OUT">
            <PatternLayout charset="UTF-8" pattern="[log4j]%d %5p [%c] %m%n" />
        </Console>
    </Appenders>
</xml>