블로그 이미지
올해목표 // 10월 어학연수 떠나자~ 자수씨

카테고리

전체글 (1457)
Brand New! (28)
주절주절 (213)
MOT (11)
해외쇼핑 (49)
쇼핑노트 (150)
취미생활 (94)
iPhone (4)
Eclipse (121)
Google (83)
Spring (31)
JAVA (176)
JavaScript (59)
WEB (49)
Database (20)
OS (26)
Tools (8)
Tips (26)
IT정보 (1)
Book (21)
Programming (37)
외부행사 (43)
주변인들 (17)
여행노트 (60)
학교생활 (30)
회사생활 (52)
사회생활 (5)
외국어공부 (12)
잡동사니 (30)
Total
Today
Yesterday
 
01-01 21:49
 

달력

« » 2025.1
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
 

최근에 올라온 글

최근에 달린 댓글

참고자료: http://gwt-widget.sourceforge.net/?q=node/45

GWT 웹 프로젝트에 위의 참고자료의 3.2 절을 적용해보았습니다.

ㅁ GWT RemoteService interface를 하나 생성합니다.

gwt에 대해서 어느정도 아신다고 생각하고 따로 설명은 하지 않겠습니다.


ㅁ 위의 interface 구현체를 만듭니다.

기존의 GWT 서블릿 구현체와는 다른점이 있습니다.
RemoteServiceServlet을 상속받지 않습니다.

이유는 저도 잘.... (아직 spring mvc가 서툴러서....)

web.xml은 다음과 같이 설정합니다.

18번째 줄에 servlet-name으로 설정된 이름에 대한 spring 설정파일을 만들어야합니다.

지금은 controller 니깐 /WEB-INF/controller-servlet.xml 설정파일에 spring mvc 설정을???

아직 이해하기 힘드니깐 그냥 쭉쭉쭉 흘러흘러~

controller-servlet.xml 입니다. 이 곳에 beans 설정을 해줍니다.
applicationContext.xml에서는 전역 beans를 설정한 것으로 가정합니다.

urlMapping bean은 다음의 mapping map에 url과 mapping 클래스를 정의합니다.
org.gwtwidgets.server.spring.GWTHandler 이 클래스는 GWT-SL 라이브러리에서 제공해주는
클래스입니다. 내부는 뜯어보지 않아서 >_<

 <entry key="[url-mapping]" value-ref="[ref-beans-id]" /> 

MailCommonService는 위에서 만든 GWT RPC servlet 클래스와 연결을 합니다.
(mailService는 전역으로 applicationContext.xml 에 정의되었습니다.)



이 방식으로 처리할 경우 일반적인 host-mode는 사용할 수 없다는 점이 단점이지만

host-mode를 다른 방식으로 실행하면 가능합니다.

또 한가지가 request나 response에 접근해야 할 경우에는 참고자료에 따로 정의되어 있으나

아직 해보지를 않아서... 추후에 올려보겠습니다.

후훗...

Posted by 자수씨
, |
출처: http://jcp.org/aboutJava/communityprocess/mrel/jsr056/index2.html

웹 스타트로 어플리케이션을 개발하면서 오프라인 모드로 만들까 했는데

알아서 제공을 해주니 이렇게 좋을 수가~~

하지만 영어라서 해석이 필요하네요;;;;


일단 설명은 다음과 같습니다. (해석 준비...)

offline-allowed element: The optional offline-allowed element indicates if the application can work while the client system is disconnected from the network. The default is that an application only works if the client system is online
뭐 대충 네트워크가 연결안되도 클라이언트에서 실행 가능하게 한다라는 뜻이겠죠~

shortcut element: The optional shortcut element can be used to indicate an application's preferences for desktop integration. The shortcut element and its sub-elements provide hints that the JNLP Client may or may not use. The shortcut element can contain the optional online attribute, and the two optional sub-elements desktop and menu.
하위 element를 통해서 jnlp client의 바로가기를 만들지를 결정한다라는 뜻인 듯...

online attribute: The optional online attribute can be used in a shortcut element to describe the application's preference for creating a shortcut to run the application online or offline. If the value is "true" the application prefers to create a shortcut that will launch the application online. If the value is "false" the application prefers to create a shortcut that will launch the application offline.
온라인용으로 만들지 오프라인용으로 만들지를 결정한다는 이야기 인가.. 흠흠 역시 해봐야 알 듯....

desktop element: The optional desktop element can be used to indicate an application's preference for putting a shortcut on the users desktop.
바탕화면에 만들지를 결정???
 
menu element: The optional menu element can be used to indicate an application's preference for putting a menu item in the users start menus. The menu element can have a sub-menu attribute.
시작 - 프로그램에서 보일 메뉴???? 이것도 해봐야 알겠습니다.

submenu attribute: The optional submenu attribute can be used to indicate an application's preference for where to place the menu item, and can contain any string value.
하위 메뉴의 보여질 이름인듯

The shortcut element provides hints to the JNLP Client which may or may not be used.


뭐 대충 알았으니 이제 실전에 돌입해야 겠네요!!

Posted by 자수씨
, |

글 보관함

최근에 받은 트랙백