2008년 6월 9일 월요일

JAVA: GWT

gwt download
http://code.google.com/webtoolkit/download.html

eclipse plug in
http://www.instantiations.com/gwtdesigner/index.html

tutorial
http://www.joinc.co.kr/modules/moniwiki/wiki.php/Site/Google/Service/GoogleWebToolkit/StartedGuide

한글 처리가 좀 귀찮다.
KitchenSink 예제의 경우 가장 간단한 처리 방법은 java파일을 utf-8로 저장한다.
또는
1. KitchenSink.gwt.xml 수정
<module>
...
<extend-property name="locale" values="EUC_KR">
...
</module>

2. 출력하는 페이지인 KitchenSink.html 수정
<head>
...
<meta http-equiv="Content-Type" content="text/html; charset=EUC_KR">
...
</head>
아니면
property를 이용하는 방법등이 있겠다.

댓글 없음: