[JEUS 8] response charset 변경하기 페이지 인코딩 변경
webApplication/WEB-INF/jeus-web-dd.xml 을 만듭니다.
<?xml version="1.0" encoding="UTF-8"?>
<jeus-web-dd xmlns="http://www.tmaxsoft.com/xml/ns/jeus">
<context-path>/euckr</context-path>
<encoding>
<response-encoding>
<default>EUC-KR</default>
</response-encoding>
</encoding>
</jeus-web-dd>
자 이렇게 되면
받는 쪽 body 로 제우스는 EUC-KR의 인코딩 형태로 html 을 던져 줍니다.
출처:https://ipex.tistory.com/entry/JEUS-8-response-charset-변경하기-페이지-인코딩-변경[깍돌이]
----------------------------------------------------------------------------------------------------------------------------
http://blog.naver.com/hwanwhat81/221181267297
ja 로 jeus admin(관리자 모드 접속)하여
applist 하면 container 정보들이 출력..
jeus 홈디렉토리 config 파일에 가보면 서비스 디렉토리 안에 container list 가 존재한다.
한글깨짐 현상이 발생하는 컨테이너로 가보면
WEBmain.xml 이 존재.
vi 로 들어가서 편집해 준다.
<context-group>
<group-name>MyGroup</group-name>
<encoding>
<request-url-encoding>
<default>utf-8</default>
<forced>utf-8</forced>
</request-url-encoding>
<request-encoding>
<default>utf-8</default>
<forced>utf-8</forced>
</request-encoding>
<response-encoding>
<default>utf-8</default>
<forced>utf-8</forced>
</response-encoding>
</encoding>
생략 ....
</context-group>
----------------------------------------------------------------------------------------------------------------------------
file.encoding ansi_x3.4-1968
분명히 utf-8로 셋팅 되었는데 Jeus는 가끔 미쳐서 파일 인코딩을 제대로 인지 못하는 경우가 있다.
String fileEncoding=System.getProperty("file.encoding");
이럴 경우 Jeus의 설정 파일에서( JEUSMain.xml ) 컨테이너 설정에 -Dfile.encoding=UTF-8 를 추가 해야 한다.
출처: https://lahuman.jabsiri.co.kr/57 [lahuman & jabsiri 노트]
----------------------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------
https://waspro.tistory.com/183
'프로그래밍 > JAVA' 카테고리의 다른 글
자바 명명 규칙 - 클래스 / 메서드 / 변수 (0) | 2020.06.18 |
---|---|
JAVA excel - [POI] POI 엑셀 - Using newlines in cells ( 셀에서 줄바꿈 ) (0) | 2020.01.09 |
[POI] POI 엑셀 - Using newlines in cells ( 셀에서 줄바꿈 ) (0) | 2019.12.30 |
[Java] 문자열 치환(Replace) 사용법 & 예제 (0) | 2019.12.30 |
java 어제 날짜 구하기 (0) | 2019.12.17 |