Jeus서버
orai18n.jar 파일 추가하기 / ORA-17056: Non-supported character set (add orai18n.jar in the classpath): KO16KSC5601
꼬요버디
2024. 7. 18. 16:47
728x90
✅ 오류 증상
ORA-17056: Non-supported character set (add orai18n.jar in the classpath): KO16KSC5601
✅ 해결
1. jeus8 에서 제공하는 jdbc connection pool을 사용하는 경우
$JEUS_HOME/lib/datasource 아래에 orai18n.jar 파일을 넣고 서버를 재기동 한다.
서버 재기동 명령어
dsdown, dsboot
2. 톰캣
로컬 개발일 때 orai18n.jar 파일을 직접 추가하거나 pom.xml 파일의 dependency 방법으로 추가한다.
<dependency>
<groupId>com.oracle.ojdbc</groupId>
<artifactId>orai18n</artifactId>
<version>19.3.0.0</version>
</dependency>