- RAP Developer Guide에 쓰인 방법으로 정리

 

  • RCP의 국제화와 방법이 다른 이유 :
In RAP we have to deal with different languages for different user sessions. Indeed, the language can also change between requests within the same session. Therefore, we cannot store language related information statically in Message classes as this is done in RCP. Instead, we must use a different instance of the Message class for every language.

각기 다른 유저 세션을 위한 언어가 다르기 때문이다. 게다가 같은 세션의 request에서도 다른 language를 요구할수 있다.

그러므로 우리는 language를 RCP처럼 클래쓰 안에 staticaaly하게 정의하고 사용할수 없다. 대신에 message class(language설정의 위한 클래스)의 instance를 사용해야 한다.

 

 

[시작]

  • test.mail.message 패키지 생성 >  Messages 클래스 생성(만든 패키지에)

public class Messages {
 
    private static final String BUNDLE_NAME
      = "test.mail.message.messages"; //$NON-NLS-1$
    public String HelloWorld;


    private Messages() {
      // prevent instantiation
    }
   
    public static Messages get() {
      Class clazz = Messages.class;
      return ( Messages )RWT.NLS.getISO8859_1Encoded( BUNDLE_NAME, clazz );
    }
  }

 

 

  • test.mail.message 패키지에 properties 파일 생성

messages.properties                             - 디폴트 (찾을수 없을때 사용되는 파일)

messages_ko_KR.properties                   - 언어 코드, 국가 코드 : 한국

messages_en_US.properties

 

  • messages.properties 내용

HelloWorld = Hello

farewell = Goodbye.

 

  • messages_ko_KR.properties 내용

HelloWorld = 안녕

farewell = 잘가

 

 

  • properties 사용할 부분에 코드 삽입
  public void createPartControl( Composite parent ) {
    Label label = new Label ( parent, SWT.NONE );
    label.setText( Messages.get().HelloWorld );
    label.setSize( 80, 20 );

 

 

 

 

 

 

 

일단은 이렇게만 실행해보아도 properties 적용이 잘 된것을 확인 할 수 있다.

properties를 다른 폴더에 넣고 싶으면, javabuild에서 폴더를 생성후 path를 등록하면 될것 같고.

참조 사이트에 보면 war로 배포하여 동작하기 위해선 web.xml에

   <init-param>
      <param-name>commandline</param-name>
      <param-value>-registryMultiLanguage</param-value>    
    </init-param>
  를 추가해야 한다고 나와있다.

 

여튼 저튼 위와 같은 방법으로 적용으로 테스트 해보면 된다.

 

 


참조 사이트 :

eclipse RAP Developer Guide(internationalization) : http://help.eclipse.org/juno/index.jsp?topic=%2Forg.eclipse.rap.help%2Fhelp%2Fhtml%2Fadvanced%2Fdeployment.html

 

RWT.NLS javadoc : http://help.eclipse.org/indigo/index.jsp?topic=%2Forg.eclipse.rap.help%2Fhelp%2Fhtml%2Freference%2Fapi%2Forg%2Feclipse%2Frwt%2FRWT.NLS.html


클래프 패스 문제 (java.util.MissingResourceException: Can't find bundle for base name javan.Res_test, locale ko_KR) : http://darky.egloos.com/1066166



posted by cozyboy
:
posted by cozyboy
:

RAP 정식 사이트 : http://eclipse.org/rap/

technologi : http://developer.eclipsesource.com/technology/crossplatform/

Jface api 사이트 : http://help.eclipse.org/helios/index.jsp?topic=%2Forg.eclipse.platform.doc.isv%2Freference%2Fapi%2Forg%2Feclipse%2Fjface%2Fviewers%2Fpackage-summary.html

SWT examples : http://www.eclipse.org/swt/examples.php

SWT Snippets : http://www.eclipse.org/swt/snippets/

GEF : http://www.eclipse.org/gef/  (Draw2d, GEF, Zest)

RCP tutorial : http://www.programcreek.com/develop-plug-ins-using-rcp/

Ecipspse 4 RCP tutorial : http://www.vogella.com/articles/EclipseRCP/article.html

한금 사이트 : http://hangumkj.blogspot.kr/2009/10/eclipse-rcp-rap.html

한금 피피트 리스트 : http://www.slideshare.net/hangum/eclipse-rap-1617751

이클립스 개념(한금) : http://blog.naver.com/blueshawn

이클립스 한국 위키 : http://ko.wikipedia.org/wiki/이클립스

rcp-rap ppt : http://www.slideshare.net/caniszczyk/single-sourcing-rcp-and-rap

OSGi 이론 : http://mobicon.tistory.com/34

http://pirrip.tistory.com/122

http://cafe.naver.com/eclipseplugin/2278

이클립스 소개글 : http://cafe.naver.com/eclipseplugin/29

http://blog.naver.com/PostView.nhn?blogId=cjmzzang119&logNo=110108686370

RAP architectur : http://www.itblogging.de/java/eclipse-rap/rich-ajax-platform-architektur/

integrating BIRT into RAP applications : http://eclipsesource.com/blogs/2009/07/06/integrating-birt-into-rap-applications/

서블릿 컨테이너에서의 equinox 역할 : http://eclipse.org/equinox/server/http_in_container.php

RAP Developer Guide (in eclipse help) war deployment : http://help.eclipse.org/indigo/index.jsp?topic=%2Forg.eclipse.rap.help%2Fhelp%2Fhtml%2Fadvanced%2Fdeployment.html

OSGi 라이프 사이클 바뀌는 방법 : http://eclipsesource.com/blogs/2013/01/23/how-to-track-lifecycle-changes-of-osgi-bundles/

RAP RCP 다른점 : http://blog.naver.com/waitzero?Redirect=Log&logNo=70025111691

 

 

RCP 사용자 정의 다이얼로그 사용하기 : http://www.dorajistyle.pe.kr/2008/03/%EC%9D%B4%ED%81%B4%EB%A6%BD%EC%8A%A4rcpeclipse-rcp-eclipsercp-%EC%82%AC%EC%9A%A9%EC%9E%90-%EC%A0%95%EC%9D%98.html

 

Brand your Eclipse RCP applications

: http://www.ibm.com/developerworks/library/os-eclipse-brand/

 

특집기사: Table Viewer / Tree Viewer 성능향상 테크닉 :

http://eclipse.or.kr/wiki/%ED%8A%B9%EC%A7%91%EA%B8%B0%EC%82%AC:Table_Viewer_/_Tree_Viewer_%EC%84%B1%EB%8A%A5%ED%96%A5%EC%83%81_%ED%85%8C%ED%81%AC%EB%8B%89#.EA.B8.B0.EC.A1.B4_.ED.8A.B8.EB.A6.AC.2F.ED.85.8C.EC.9D.B4.EB.B8.94_.EB.B7.B0.EC.96.B4_.EB.AC.B8.EC.A0.9C.EC.A0.90

SWT에서 Multi-Thread로 인한 UI Blocking에 대한 고찰

http://blog.naver.com/PostView.nhn?blogId=albertx&logNo=100093142739&redirect=Dlog&widgetTypeCall=true

 

RAP 2.0 migration guide : http://www.eclipse.org/community/rcpos.php

RAP/server push : http://wiki.eclipse.org/RAP/UI_Callback

 
posted by cozyboy
:

SWT에서 Multi-Thread로 인한 UI Blocking에 대한 고찰

 

 

SWT, Swing or AWT (일반적으로 자바를 배운사람은 swing은 대략 안다. SWT, Swing, AWT 객체비교 표가 존재하는데, 비교하면 대략 SWT와 매치시킬수 있다)

http://www.ibm.com/developerworks/kr/library/os-swingswt/index.html

 

Swt widgets, snippets, JFace Snippets 예제 및 그림 존재

http://www.eclipse.org/swt/snippets/

posted by cozyboy
:

 Viewpart에서 외부library 사용중 그 라이브러리에서도 내부적으로 쓰레드를 사용하여 충돌이 발생한듯 하다.

 

안드로이드 같은경우 main 스레드와 UI 스레드가 따로 구분되어 있다.

SWT역시 그러한듯 하다. 그렇게 만들어져야만 한다.

 

Text text;

text.getDisplay().asyncExec( ~로도 안되고

PlatformUI.getWorkbench().getDisplay().asyncExec(  ~로도 안된다.

 

Display.getDefault().asyncExec(new Runnable() {
@Override
  public void run() {
      여기에 작성

  }
  });

}

 

http://rusya7.blogspot.kr/2011/11/orgeclipseswtswtexception-invalid.html에서 해결법 찾음

 

 

페이지 제목이 Java-studying / swt-widget-thread-problem 인것을 보면 Thread 관련 소스예제들이 존재하는 듯하다.

https://github.com/rusya7/Java-studying/tree/master/swt-widget-thread-problem

 

 


 

 

There's only one UI thread in Eclipse. In a nutshell, the rules are:

  • If you got called as part of a UI operation (e.g. event handler, view initialization) you are in the UI thread.
  • All other operations that invoke a UI (e.g. a job which needs to show a dialog or send information to a view which modifies a widget) - need to sync with the UI thread.

This is basically done like this:

 Display.getDefault().syncExec( new Runnable() {  public void run() { } });

Your code goes in the run method. You may also use the asyncExec method to continue without waiting for the UI to finish.

Try using the snippet above to wrap the problematic code.

 

 -> http://www.vogella.com/articles/EclipseJobs/article.html


 

왜 이렇게 해결이 되는것인가???

 

Display javadoc ->

http://help.eclipse.org/indigo/index.jsp?topic=%2Forg.eclipse.platform.doc.isv%2Freference%2Fapi%2Forg%2Feclipse%2Fswt%2Fwidgets%2FDisplay.html

 

  • Class Display  (Display 는 class, 디스플레이는 말그대로 영어 표현)

 

SWT와 기본 운영 체제 사이의 연결을 관리 할 책임이 있다.

가장 중요한 기능은 플랫폼 이벤트 모델의 관점에서 SWT 이벤트 루프를 구현하는 것이다. 또한 운영 체제에 대한 정보를 액세스하기위한 다양한 방법을 제공하고, 어떤 SWT를 할당 운영 체제 리소스를 전체 제어 할 수 있다.

 

SWT로 만드는 응용 프로그램은 기존의 Display가 dispose() 메시지를 보내지 않은이상, 거의.. 단 하나의 Display만 존재한다.

 

SWT에서 Display instance를 생성 한 스레드가 해당 디스플레이의 사용자 인터페이스 스레드로 구분된다. (메인 스레드와 사용자 스레드는 같다는 말같다. 대신 아래나오지만, )

 

특정 디스플레이에 대한 사용자 인터페이스 스레드는 다음과 같은 특수 속성이 있다. :

1. The event loop for that display must be run from the thread.


2. Some SWT API methods (notably, most of the public methods in Widget and its subclasses), may only be called from the thread. (To support multi-threaded user-interface applications, class Display provides inter-thread communication methods which allow threads other than the user-interface thread to request that it perform operations on their behalf.)


3. The thread is not allowed to construct other Displays until that display has been disposed. (Note that, this is in addition to the restriction mentioned above concerning platform support for multiple displays. Thus, the only way to have multiple simultaneously active displays, even on platforms which support it, is to have multiple threads.)

 

1. 디스플레이에 대한 event loop는 스레드에서 실행해야만 한다.

2. 일부 SWT api methods(특히, 위젯의 public method의 대부분)는 쓰레드로 불려야만 한다. (multi-threaded user-interface 응용 프로그램을 지원하기 위해, class Display는

inter-thread communication methods를 제공한다(자신의 작업을 대신수행하는 user-interface thread 보다는 말이다)

3. 스레드는 디스플레이가 dispose되기전까지 다른 Display를 허락하지 않는다. 심지어 multiple displays를 지원하는 플랫폼에서조차. 그래서 mutiple displays를 활성화 하는 방법은 multiple thread 뿐이다.

 

 

  • Display.getDefault

Returns the default display. One is created (making the thread that invokes this method its user-interface thread) if it did not already exist.

 

  • Display.getDefault.asyncExec

Causes the run() method of the runnable to be invoked by the user-interface thread at the next reasonable opportunity. The caller of this method continues to run in parallel, and is not notified when the runnable has completed. Specifying null as the runnable simply wakes the user-interface thread when run.

Note that at the time the runnable is invoked, widgets that have the receiver as their display may have been disposed. Therefore, it is necessary to check for this case inside the runnable before accessing the widget.

 

 

 


[참고]

Eclipse Jobs and Background Processing

http://www.vogella.com/articles/EclipseJobs/article.html

 

Display javadoc

http://help.eclipse.org/indigo/index.jsp?topic=%2Forg.eclipse.platform.doc.isv%2Freference%2Fapi%2Forg%2Feclipse%2Fswt%2Fwidgets%2FDisplay.html

 

 

 

posted by cozyboy
:

mysql에 openfire 디비 생성(mysqld가 실행되고 있게 한다. 내부db를 사용할수도 있다는데 mysql 사용함)

 

http://www.igniterealtime.org/

openfire linux tar 다운

 

압축 풀기

 

bin/openfire 에 777 권한 주고

 

openfire start

 

http://localhostIP:9090 으로 접속

(접속이 잘 안된다면 openfire status로 실행중인지 확인)

 

 

next -> next -> 아이피와 아까 생성한 디비명을 적고

 

비번 생성

 

admin, 비번으로 접속

 

 

 

http://mytory.net/archives/212

posted by cozyboy
:

The Pillars of the RAP 2.0 API(RAP 2.0 Countdown (2/5)) -

http://eclipsesource.com/blogs/2013/02/04/rap-2-0-countdown-25/

 

 

RAP protocol: On the way to RAP 2.0

http://eclipsesource.com/blogs/2010/04/28/rap-2-0-protocol/

 

RAP protocol: JSON messages -

http://eclipsesource.com/blogs/2010/05/10/rap-protocol-json-messages/

 

RAP becomes the Remote Application Platform -

http://eclipsesource.com/blogs/2012/11/26/rap-becomes-the-remote-application-platform/

posted by cozyboy
:

eclipse platform 개발할때,

RCP는 3.x로 할지 e4로 할지, RAP는 1.x로 할지 2.x로 할지 고민중에 RAP의 이름이 변경된 이유가 써있길래 겸사겸사 번역?? 스럽게 적어둠.   [원문]보기

 

RAP의 경우 1.x버전의 코드를 2.x로 convert하는 것도 일이 되겠구나란 생각이 든다.

 

  • ajax platform에서 protocol형태로 바뀐 간략한 이유 

1. 자바코드가 server에서 돌고 있는데, javascript 를 qooxdoo(자바스크립트 UI 프래임워크)에 의해 widgets으로 rendering(서버가 qooxdoo에 맞는 자바스크립트 코드를 클라이언트에게 보내는것)하도록 하는 부분이 과부하가 컸다.

 

2. 클라이언트는 특정 자바스크립트 프래임워크에 취약하다.

 

이 두가지의 상황을 더 좋게 하기위해 protocol 개념을 사용하게 되었다.

 


 

 

Eclipse RAP 1.x 까진 Rich ajax platform이란 명칭이였지만

2.x에서부턴 명칭은 같으나 Remote Application Platform라는 새로운 이름이 부여되었다.

 

새로운 RAP는 "Half Object plus Protocol(HOPP)" 패턴으로 구현되었다.

 

 

 

 

RAP에서 위젯의 반은 server에서, 반은 client에서 작동되게 된다.

그 둘은 protocol에 의해 연결된다.

 

이와같은 디자인의 가장 큰 장점은 어플리케이션이 client/server communication을 신경쓸 필요가 없다는 것이다. 이 둘의 communication은 플랫폼이 알아서 한다.

 

이전의 RAP는 반의 objects만 가지고 있었으나 protocol은 없었다. 대신 javascript commands와 http parameters에 의해서 통신을 하였다.

 

RAP 1.5부터는 전체적인 플랫폼들이 open JSON protocol로 migration 되었다.

 

client의 구조와 server는 JSON messageds로 바뀌었다.

이 메시지는 header 부분과 operations list로 구성된다.

 

{
head: { … },
operations: [ … ]
}

 

 

오퍼레이션은 크게 여섯가지 타입이 있다.

create – to create a remote object,

set – to set one or more properties on the remote object, and

destroy – to well, you guessed it. Besides set there is also call to call a method on a remote object.

listen and notify to exchange events

 

Every remote object is identified by an id and every operation addresses exactly one target object.

모든 remote object는 id로 식별되고, 모든 operation은 address로 하나의 target object로써 식별된다.  (맞는지 모르겠다. 위 글이 원문임.)

 

 

예시) message that creates a Button with a Selection listener

{
  "head": {
    "requestCounter": 1
  },
  "operations": [
    [ "create", "w4", "rwt.widgets.Button", {
        "parent": "w2",
        "style": [ "PUSH" ],
        "bounds": [ 5, 68, 131, 32 ],
        "text": "I am a button" } ],
    [ "listen", "w4", { "Selection": true } ]
  ]
}

 

위의 json(프로토콜)을 보면 create operation이 이미 버튼의 특성을 init하는 부분을 포함하고 있다는 것을 볼수 있다.  그리고 selection listener가 붙는 listen operation을 확인할 수 있다.  

 

버튼이 클릭될 시, 클라이언트가 서버에 보내는 message

{
  "head": {
    "requestCounter": 1
  },
  "operations": [
    [ "notify", "w4", "Selection", {
        "shiftKey": false,
        "ctrlKey": false,
        "altKey": false
      } ],
    [ "set", "w1", {
        "cursorLocation": [ 121, 104 ],
        "focusControl": "w4"
      } ]
  ]
}

 

 

위의 것은 대략적인 작동을 위한 글이며, 자세한 protocol을 알고 싶다면

eclipse wiki 에서 확인.

 

 

이 글에서 중요한 점은, RAP가 half objects라도 protocol에 UI의 세부사항이 없다는 것이다.

protocol은 더이상 HTTP에 depends하지 않다. 비록 RAP가 여전히 HTTP에 얽매여 있지만, 앞으로의 버전은 다른 추가적인 protocols에 의해 작동될것이다.

 

(ajax와 qooxdoo에 depends하게 동작하지 않겠다는 소리 같음. 중요한것은 독자적인 프로토콜로 동작할 것이란 말인듯하다. 그것이 표준인지 표준을 만들겠다는 것인지까진 모르겠지만)

 

(암튼 이게 RAP 가 새로운 이름으로 변경된 이유라고 한다. 또 모든것이 같은 프로그래밍 모델이 되기 위한 길이라고 한다. 어플리케이션과 웹과 스마트폰의 프로그래밍 일치화. 뭐 이런것??)

 

 

-------------------------------------------------

 

RAP protocol: On the way to RAP 2.0 -

http://eclipsesource.com/blogs/2010/04/28/rap-2-0-protocol/

 

Remote - The New "R" in RAP

http://eclipsesource.com/blogs/2013/02/01/rap-2-0-countdown-15/

 

RAP protocol: JSON messages

http://eclipsesource.com/blogs/2010/05/10/rap-protocol-json-messages/

posted by cozyboy
:

이클립스 3.x(indigo) 와 4.x(juno)는 상이한 면이 많은것 같다.

개발 시 어떤것을 택할지도 고려해야 한다. 일단 자료수집 수집 수집


juno tutorial

http://help.eclipse.org/juno/index.jsp?topic=%2Forg.eclipse.ocl.doc%2Fhelp%2FTutorials.html


indigo toturial

http://help.eclipse.org/indigo/index.jsp?topic=%2Forg.eclipse.ocl.doc%2Fhelp%2FTutorials.html

-------------------------------------------------------------------------------------------------------------------


eclipse e4 top 10 특징

http://eclipsesource.com/blogs/2012/06/27/top-10-eclipse-juno-features/


이클립스 e4 tutorial -

http://www.vogella.com/articles/EclipseRCP/article.html


이클립스4(4.2 or juno, or e4) application model 튜토리얼 pdf 다운(영어) -

http://eclipsesource.com/en/info/eclipse-4-tutorial/


이클립스 트레이닝 ??

http://eclipsesource.com/en/services/eclipse-training/


이클립스 e4 tutorial 몇개 정리되 있는 블로그

http://eclipsesource.com/blogs/2012/05/10/eclipse-4-final-sprint-part-1-the-e4-application-model/

 

e4 Technical Overview(아키텍쳐와 프로그래밍 모델 요약문) -

http://www.eclipse.org/e4/resources/e4-whitepaper.php


 

GEF(Graphical Editing Framework) Draw2d, GEF(MVC), Zest

http://www.eclipse.org/gef/

posted by cozyboy
:

1. 편집기는 같은 위도우 내의 퍼스펙티브 간에 공유한다. 예를 들어, 한 퍼스펙티브에서 편집기를 닫으면 모든 퍼스펙티브에서 편집기가 닫힌다.

2. 편집기와 뷰는 같은 스택 위에 배치할 수 없다. 예를 들어 퍼스펙티브의 동일한 위치에 뷰와 편집기를 드래그앤드롭할 수 없다.

3. 뷰는 워크벤치 위도우에서 떼어진다.

4. 뷰는 제목 없이 보일 수 있다.

5. 편집기는 메인 툴바와 메뉴에 기여할 수 있지만 뷰는 뷰 자신의 툴바와 메뉴에만 기여할 수 있다. 하지만 뷰가 활성화될 때 액션 집합의 지정이 가능하다.

6. 편집기가 포커스를 갖지 않더라도, 마지막으로 포커스를 가졌던 편집기는 활성화된 편집기로나아 있어서 다른 요소에게 정보를 제공한다. 그러므로 좀 더 쉽게 편집기와 뷰는 동기화된다. 예를 들면 아웃라인 형태의 뷰와 편집기를 연결하는 일은 쉽다.

 

위와 같은 내용은 이클립스를 실행하여 이것저것 만져보면 감을 잡기 쉽다.

posted by cozyboy
:

RCP, RAP 해본지 5일하고, 4일째

배포방법 찾느라 이틀을 검색, 검색, 검색...

삽질 하지 말자.. 그 누구도 이런일 때문에.. 제발!!

 

 

환경 : 리눅스, eclipse indigo, rap 1.5

 

복잡하게 ant 작성하고 이러저러하기엔 시간이 모자르다.

이클립스에서 rap 배포툴을 만들어 두었습니다.

여러 시행착오 끝에 이클립스의 말을 듣고 RCP & RAP 전용 이클립스를 다운받았음에도 불구하고 제대로 안되었던 RAP 배포.  하지만 여태껏 링크걸어둔 싸이트와 검색에 검색을 더해 성공.

 

 

정리된 내용 :

1. rap Demo소스 사용법

2. WAR products Tooling을 이용하여 간단하게 war파일 생성

3. 톰캣 설치

4. war 톰캣에 배치후 실행

5. rap는 어떻게 작동하는 것일까..

 

웹하는 사람이 아니라 모르는 용어들이나 도움될만한 것들을 적다보니 서두 없이 지저분합니다. 

하여 목차를 생각해보면 위와 같습니다.                       

 


 

  •  rap Demo소스 사용법

rap에서 제공 하는 Demo소스를 이용하였습니다.  아래그림은 Rap 환경을 제대로 구축하였을 시 볼수 있는 장면입니다.

 

  • Select the org.eclipse.rap.demo plug-in and use the command Import As > Source Project from the context menu to import org.eclipse.rap.demo as project in your workspace.
  • Import RAP demo project

     

     

     

    프로젝트 war 변형(WAR products Tooling을 사용합니다.) - 그림대로 따라하면 됨

     

     * 하지만 아래 그림의 tool이 없다?

    indigo Update Site, In "Web, XML, Java EE and OSGi Enterprise Development" category, named as "WAR Products (Incubation)"

     

    indigo update 사이트에서 ->

    카테고리 : Web, XML, Java EE and OSGi Enterprise Development

    이름 : WAR Products (Incubation)

    가 깔려 있지 않을 것임.

     

    RCP & RAP 전용 이클립스를 다운받았음에도 이 항목이 존재하지 않았다.

     

    다시 아래 그림대로.

     

     

    • WAR products Tooling을 이용하여 간단하게 war파일 생성

     

    Open the New WAR Product Configuration wizard.
    WAR product wizard

  • Enter a name for the war configuration file and select the RAP Workbench Demo from the available launch configurations.
    WAR pruct configuration
  • The rapdemo.warproduct configuration

    WAR Products tooling provides a form-based multi-page editor to manage a .warproduct configuration. The editor has the following pages:

    • Overview: on this page you can enter additional information like ID, Name, Version but they are not needed to export a war archive. Also the WAR Product export wizard can be started from the Overview page.
      WAR Product editor

    Id, version, Name 적고 아래 Exporting 탭의 Validate 검사후, export wizard 실행 하면 war 파일이 바로 생성됨. 그 전에 아래그림에서 Add Required Plug-ins를 눌러준다.

    • Configuration: Here you can manage which plug-ins and libraries to be included into the war archive.
      WAR Product editor configuration
    • Web.xml: On this page the web.xml of the war archive can be edited.
      WAR Product editor web.xml

     


     

    • 톰캣 설치

    톰캣 설치는 알아서..

    흠. 이클립스를 이용하여 다운 받는 법을 글로만 쓰자면

     

    import project에서

    Web-> WAR file 후 타겟을 선택하는 곳이 있다.

    옆에 New버튼이 있는데 그곳에서 설치하고싶은 버전의 톰캣을 선택후, finish를 누르면 tomcat이 설치된다.

    당황스럽게도 다운받는지 아닌지를 모르겠지만, 하단에 보면 다운중인 표시가 떴던기억이 난다.

     

    암튼 이렇게 대충 설치 후,

     

     흠.. 톰캣 실행 법은 bin폴더에 실행파일이 있다.

    그곳의 .sh로 끝나는 파일을 모두 실행가능 권한을 준다.

     

    startup.sh 과 shutdown.sh 을 통해서 톰캣을 실행/중지 할수 있다.


     

    • war 톰캣에 배치후 실행

     

    Tomcat에 배치

    현재는 Tomcat이 포트 1234에서 실행되도록 구성되어 있지만, Tomcat은 포트 8080에서 실행되는 것이 일반적이다. 내장된 Tomcat 관리자를 사용하여 만들어진 .war 파일을 배치할 수 있다. http:localhost:8080/manager/html로 이동한다.

     

     

    localhost:8080/ 으로 들어가면 tomcat gui에 접속하여 위의 방식으로 war를 배치 할수 있다.

    하지만 아래와 같은 계정설정을 해야 할 것이다.

    conf 폴더 안에 tomcat-users.xml 파일에 아래와 같이 삽입

    <tomcat-users> <user name="admin" password="admin" roles="admin-gui,manager-gui" /> </tomcat-users>

     


    그림 45. Tomcat 관리자를 사용하여 WAR 배치
    Tomcat 관리자를 사용하여 WAR 배치

    "WAR file to deploy" 섹션에 방금 작성한 .war의 파일 이름과 경로를 입력하고 Deploy를 클릭한다. Tomcat에서 WAR을 배치하는 작업을 완료하면localhost:8080/로 이동하여 개인용 태스크 관리 애플리케이션을 실행할 수 있다.

     

     

    http://localhost:8080/rapdemo/rap 로 접속할수 있다.

     

     

     


     

    •  rap는 어떻게 작동하는 것일까.

     

    더 생각해 보자. 이놈의 RAP는 어떻게 작동하는것일까.

     

     

    qooxdoo는 자바스크립트 프레임워크로 UI 스타일이라고 보면 될듯하다.

    http://www.xenomity.com/69

    서버 : tomcat과 war

    클라이언트 : 브라우저(qooxdoo)

     

    1. 서블렛 컨테이너(like tomcat)에 들어오는 HTTP request를 핸들하고 tomcat과 같은 server에게 전달해주는 Servlet Bridge(이 역시 jar며 class 파일의 집합이다)가 존재한다.

     

    2. request를 RWT와 같은 라이브러리 혹은 자신이 연동한(작성한) 프로그램으로 처리한다.

     

    3. 그 결과를 Http Servlet으로 exposing한다.

     

    Servlet Bridge (org.eclipse.equinox.servletbridge) status:green
    Low level hook servlet installed in an existing traditional application server. This servlet launches an embedded Equinox and enables it to handle incoming HTTP requests originally sent to the underlying server.
    HTTP Servlet (org.eclipse.equinox.http.servlet) status:green
    Generic support for exposing another servlet facility (e.g., an underlying application server) as an OSGi HTTP service.

     

    내부적으로는 여튼, 이렇게 통신을 하는것 같다.

     

    조금더 외부적인 동작은 이름따라 RAP는 ajax paltform이다.

    Asynchronous JavaScript + XML의 약어로 음..

     

    http://blog.naver.com/jhoh86?Redirect=Log&logNo=10133727118

     

    이와 같이 돌아가겠지요.

     

     

     

    이것은 이클립스의 equinox에 대한 사이트이다. equinox에 사용된 플러그인(번들)에 대한 설명이 간략하게나마 리스팅 되어있다.

     

    http://eclipse.org/equinox/server/

     

     

    ----------------------------------------------------------------

    [ibm에 정리되어 있는 내용]

    org.eclipse.equinox.servletbridge
    프레임워크를 실행하고 프레임워크를 서블릿 컨테이너로 다시 끌어들일 위치를 제공한다.
    org.eclipse.equinox.servletbridge.http
    서블릿 브릿지로 다시 끌어들이고, OSGi HttpService를 제공할 서블릿 컨테이너로 요청을 프록시한다.
    org.eclipse.equinox.http.servlet
    초기화될 때 OSGi HttpService를 등록하는 http.servletbridge에 의해 사용되는 HttpServiceServlet을 제공한다.
    org.eclipse.equinox.http.registry
    OSGi HttpService를 기반으로 하는 HTTP 컨텍스트 확장점과 서블릿 및 자원을 제공한다.

    http://www.ibm.com/developerworks/kr/opensource/tutorials/os-eclipse-ganymede-pt2/section5.html

     


    링크 -

     

    Rap dev 가이드(deploy 부분) :

    http://help.eclipse.org/indigo/index.jsp?topic=%2Forg.eclipse.rap.help%2Fhelp%2Fhtml%2Fadvanced%2Fdeployment.html

     

    Rap product Configuration 이 항목에 없을때 :

    http://www.eclipse.org/forums/index.php/m/704357/#msg_704357:

    WAR Product tooling is available from indigo Update Site, In "Web, XML, Java EE and OSGi Enterprise Development" category, named as "WAR Products (Incubation)"

     

    tomcat에 올리기 :

    http://www.ibm.com/developerworks/kr/opensource/tutorials/os-eclipse-ganymede-pt2/section5.html

     

    tomcat 주소에 쓸 주소 :

    http://blog.naver.com/waitzero?Redirect=Log&logNo=70025111691

     

    tomcat gui manager 사용방법

    http://blog.naver.com/artofdata?Redirect=Log&logNo=110149615328

     

     

    qooxdoo 간단 설명 :

    http://www.xenomity.com/69

     

    ajax 간단 설명:

    http://blog.naver.com/jhoh86?Redirect=Log&logNo=10133727118

     

    이클립스 equinox 사이트(서버단에 사용된 플러그인 리스트와 설명) :

    http://eclipse.org/equinox/server/

     

    posted by cozyboy
    :
    • 이클립스 tutorial에 나오는 에디터 (어떻게 사용하는지 모르겠음.)

    Eclipse 4 Tools: Application Model Editor 주소 -

    http://marketplace.eclipse.org/content/eclipse-4-tools-application-model-editor

    update 주소 - http://download.eclipse.org/e4/updates/0.12

     

    • SWT Designer(Window Builder Pro ) - 이게 좋을듯

     - 퀵스타트 주소 : https://developers.google.com/java-dev-tools/wbpro/quick_start?hl=ko-KR

     - 유저 가이드 : http://help.eclipse.org/indigo/index.jsp?topic=%2Forg.eclipse.wb.doc.user%2Fhtml%2Findex.html

     

     

    설치 법 - 편하게 마켓으로 깔자

    1 . Market place :

    window 검색 -> WindowBuilder Pro GUI Designer 설치

     

    2. WindowBuilder Pro Update Site -  http://dl.google.com/eclipse/inst/d2wbpro/latest/3.6

     

     

    swt, 즉 뷰가 사용된 클래스에서 open with로 windowBuilder를 사용 하면 GUI가 나온다.(action 이런데다가 써놓고 안된다 하지 말기, RCP 디자이너가 아니라 SWT 디자이너임.)

     

    posted by cozyboy
    :

    실행화일 형태로 내보내는 방법에 대해 설명합니다.

    install형태로 만드는 것은 아닙니다.

    단지, exe(windows 플랫폼) 형태로 만들어서 사용자가 sw를 설치 및 실행을 가능하게 만들어 내는 것입니다.

    책 내용을 그대로 따라하기 보단 실제 간단한 application을 실행화일로 만들어 보겠습니다.

    우선 누구나(?) 만들어 낼 수 있는 sample plug-in example인 "RCP mail telplate"를 가지고 해보겠습니다.

    이런 완성된(?) application 이 있습니다.

    과정은 이렇습니다.

    1. plugin.xml에서 build 탭의 Binary Build를 손봐준다. 필요한 리소스들을 체크하여야 내보내서 별탈없이 동작합니다.

    2. product 생성 ( 8장에서 이미 되어 있다면 통과~ )

    3. package로 export 시켜 마무리.

    위의 순서대로 sample을 패키지화 시켜보면,

    plugin.xml 에서 binary build할 때 필요한 체크리스트가 나오는데 현재는 그대로 놔둡니다. 필요한 리소스들이 다 체크 된 상태입니다.

    2번째로 product configuration 생성. sample에는 안되어 있으니 해봅니다.

    위의 과정으로 생성을 시키면,

     

    New Product configuration dialog이 나오면서 product화일명을 요구합니다. 저는 sample이라고 쳤습니다.

    그리고 밑의 use an existing product 나 use a launch configuration에서 자신에게 알맞는(?) 것을 선택하시면

    됩니다.

    저는 사실 미리 생성이 되어 있었고 이미지 캡쳐 때문에 existing product 에 라디오버튼을 놨습니다만,

    처음 하실 때는 밑의 실행설정에서 찾으시면 될 겁니다.

    그것도 없을 때는 미리 sample application을 실행 시키시면 하나 나오게 되어있습니다.

    Finish를 선택하시면,

     

    이렇게 sample.product가 생성될 것입니다.

    다음은 마지막으로 package를 export 시켜서 패키지로 만들겠습니다.

    우선 product 시킨(제품화?) 결과물이 이상없이 잘 되는지 실행 시켜보겠습니다.

    Overview에서 launch 시켜 보는 겁니다. 물론, 여기서는 잘 됩니다.

    하지만, 세상은 호락호락 하지 않은 법! ~ 안될 경우도 있을 겁니다.

    그럴 때 가장 먼저 해볼 수 있는 것은 configuration 에서 plugin들이 제대로 add 되어 있는지 보셔야 합니다.

    package 시킨다 해도 모든 기능을 exe에는 담을 수 없을 것입니다.

    따라서 필요한 plug-in들이 따라서 담겨야 하는데 가끔 이것이 제대로 안될 때가 있는 모양입니다.   --- 이부분은 조금 달랐던 기억, 눌러보면 나온다.

    그럴 때는 이렇게 필요한 애들만 add 시켜 줍니다.

    별 이상없이 launch가 잘 된다면 거기서 오른 편에 Exporting 시켜 주는 부분이 있습니다.

    exporting을 시킵니다.

    위에 처럼 2군데 정도만 적절히 입력해주세요.

    그런 다음 destination에서 입력한 directory로 찾아가서 보시면 exe 형태로 있습니다.

     

     

    링크 : http://cafe.naver.com/eclipseplugin/

    posted by cozyboy
    :

     

    http://obscuredclarity.blogspot.kr/2010/06/import-and-export-eclipse-rcp.html

     

     

     

    posted by cozyboy
    :

    ■ OSGi(Open Services Gateway Initiative - Dynamic Module for Java)

    - 한개의 번들 또는 여러 개의 번들로 이루어진 애플리케이션 자체를 언제든지 동적으로 프레임워크상에 설치, 실행, 업데이트, 중단, 제거하는 것을 가능하게 하는 매우 유연한 라이프 사이클모델을 지원하는 프레임워크

    - JSR-291 : Dynamic Component Support for Java

    - JSR-277 : Java Module System

    ■ OSGi History

    - OSGi Alliance(http://www.osgi.org) 1999년 3월 IBM, Sun, NOKIA, Samsung

    - 홈네트워크를 지원하기 위한 플랫폼으로 개발

    ■ OSGi 특징

    - 각 애플리케이션이 번들이라고 불리는 작고 재사용 가능한 컴포넌트로부터 조립될수 있도록 도와준다

    - 여러개의 번들로부터 조합된 애플리케이션들은 OSGi 프레임워크가 설치된 곳은 어디든지 배포될 수 있다.

    - 조합된 어플리케이션들은 시스템의 재시작없이 컴포넌트의 연결 구조를 동적으로 변경할 수 있다.

    ■ OSGi의 사용처

    - 이클립스 : 포함된 equinox가 OSGi의 구현체로 번들로 구성된다.

    - 프린터 및 복합기 : Canon MEAP, Ricoh OSA

    - WAS

    IBM Websphere, Oracle WebLogic, Redhat JBoss, SpringSource Application Platform, Sun GlassFish Enterprise Server

    ■ OSGi의 구현체

    - OSGi는 Specification만이 존재하므로 여러 구현체가 있게 된다. 이 구현체의 목록은 아래와 같다.

    구현 Spec

    License

    URL

    Eclipse Equinox R4

    EPL

    http://www.eclipse.org/equinox

    Apache Felix

    R4 APACHE

    http://www.felix.apache.org

    Knopflerfish R4&R3 BSD http://www.knopflerfish.org

    Concierge

    R3 BSD

    http://concierge.sourceforge.net

    ProSyst mBedded Server R4

    EPL&Professional Edition

    http://www.prosyst.com

    ■ OSGi 의 특징 2

    - 여러개의 번들로부터 조합된 애플리케이션들은 OSGi 프레임워크가 설치괸 곳은 어디든지 배포 가능

    - 애플리케이션들은 시스템의 재시작 없이 컴포넌트의 연결구조를 동적으로 변경할 수 있다.

    - 동적으로 변경하기 위해 OSGi는 서비스 지향 아키텍처(SOA)를 사용

    - OSGi에서 제공하는 Service Registry에 자신의 서비스를 등록하여 OSGi를 통해 서비스를 import/export 가능

    ※ SOA - 소프트웨어를 구축할 때, 각각의 컴포넌트에 의해 처리되는 작업들을 잘 정의된 인터페이스를 가지는 서비스들로 도출한 후, 이를 연동/조합하여 시스템을 구축하는 형식

    즉 '서비스'와 '이를 조합하여 하나의 어플리케이션을 구축하는 것'이 중심

    ■ OSGi API - 구현체인 관계로 API는 동일하며 OSGi Alliance(http://www.osgi.org/Release5/Javadoc) 에서 서비스 한다. 현재 버전 5

     

    [펌] : http://pirrip.tistory.com/122

    http://mobicon.tistory.com/34

    http://cafe.naver.com/eclipseplugin/2278
    posted by cozyboy
    :

    Juno 보단 Indigo이던가, 하위버전이 좋을 듯 하다.

    eclipsercp.org에서 샘플코드를 해보려고 하였으나, 안됨. 그냥 안됨.

    indigo로 바꾼 후, 바로 됨. 제길슨..


    rap 2.0은 Eclipse 3.8 and 4.2 (즉 Juno) 버전이다. indigo로 할시 아래 방법이 아니라 마켓에서 RAP로 검색 -> rap tools 1.4가 나온다. 이 후는 아래 과정과 같음.


    알아서 선택. 현재 공부하려는 rcp가 플러그인 형태로 나왔는데 Juno에선 안되서 Indigo로 바꿨더니. 이젠 rap가 버전이 낮음.


    공부만 indigo로 하고 개발은 Juno로 GO.

    =========================================================================

     

     

     


    • RCP 설치

    (Help -> Install New software 방식)

    각자 맞는 업데이트 사이트(http://download.eclipse.org/releases/juno)에서

    "General Purpose Tools" -> "Eclipse RCP" 와 "Eclipse RCP Plug-in Developer Resources", RCP SDK 를 설치

     

    아 기억이 안난... RCP 치면 대략 이거다 싶은거..

    (현재 이클립스에 Eclipse Platform, Eclipse Platform SDK, Eclipse RCp, Eclipse RCP Plug-in Developer Resources, Eclipse SDK 가 깔려 있다.)

     

    http://sarojaba.tistory.com/147   (영문 tutorial 싸이트를 보고 정리 해놓은 듯. 원문 존재)

    이곳에 방법과 간단한 튜토리얼이 잘 정리 되어있다.

     

     


     

    http://www.vogella.com/articles/EclipseRAP/article.html

    -> rap tutorial


    • RAP 설치(v2.0) - 마지막 릴리즈(v1.5)는 그냥 마켓에서 RAP 검색 후, 받으면 된다.

     

     

    rap 배포 사이트 : http://www.eclipse.org/rap/downloads/2.0/

     

    현재 마지막 릴리즈는 1.5지만 2.0릴리즈가 곧 이랜다.

    디밸로퍼 가이드가 존재하지만 2.0 설명은 컨+c 컨+v 만 해둔듯 하다. 봐도 되는데 보지 말자(지금은 정확하지 않다)

     

     

    순서는 다음과 같다. (Help -> Install New software 방식)

     

    • rcp와 workspace를 같이 쓰지 말자. target이 workspace에  깔리게 되어서 따로 사용하는 것이 편하다. 

     

    1. rap tools 설치 : http://download.eclipse.org/rt/rap/tools/2.0

    -> 이클립스 welcome 에 RAP 란이 생성된다. 클릭

     

    2. Install Target Platform 클릭

     :  window -> preferences -> plug-in Development -> target Platform 을 확인 해 보면 RAP 2.0 M4(Active)로 2.0 버전 설치되었다는 것을 확인할 수 있다.

     

    -> Latest stable build : 2.0 설치,

         Latest release : 1.5

    중 하나 를 선택해야 하는데  디폴트인 stable build로 설치

     


    rap tools : rap설치 하는데 필요한 target을 간편하게 다운받고 설정,

                    quick tutorial

                     rap를 run 할수 있도록 폼을 제공한다.  그러므로 순서대로 설치 하자

     

     

     

     

    관련 사이트들이 여러개 있지만 이곳이 일단 좋아 보입니다.

    스터디그룹에서 만든 피피티이며, 전체적인 맥락을 대략 알수 있을 듯합니다.

     

    http://hangumkj.blogspot.kr/search/label/Eclipse%20RCP%20study

     

    이곳저곳을 돌아다니며, 이 피피티 좋네 하던게 다 여기서 나온.

    아주 상세히 전부가 다 나온것은 아니라. 맥락 파악하기 좋은 것 같네요.

    posted by cozyboy
    :
    언어&플랫폼/Eclipse RCP&RAP 2012. 12. 27. 09:47

    이클립스 튜토리얼 동영상?:

    http://eclipsetutorial.sourceforge.net/

     

    워크벤치 비디오 강좌 ?(위와 일치하는.. 한글 번역) :

    http://translate.googleusercontent.com/translate_c?depth=1&ei=q-ncUJC4JIWuiQL8p4G4BA&hl=ko&langpair=en%7Cko&rurl=translate.google.co.kr&u=http://sourceforge.net/projects/eclipsetutorial/files/Eclipse%2520Workbench/Version%25201.0/&usg=ALkJrhg7f4RpXsQ2Z-ZZFEShNvypamtTRA

     

     

    rcp 정보:

    http://wiki.eclipse.org/RCP#Tutorials

     

    rcp open src 및 정보:

    http://eclipse.org/community/rcp.php

     

     

    jface api :

    http://help.eclipse.org/helios/index.jsp?topic=%2Forg.eclipse.platform.doc.isv%2Freference%2Fapi%2Forg%2Feclipse%2Fjface%2Fviewers%2Fpackage-summary.html

     

    rcp 예제 Hyperbola(이클립스 RCP 책) - 메신저 클라이언트 애플리케이션 :

    http://eclipsercp.org/  (install software 로 이클립스에 설치도 가능)

     

     

    rcp turorial 한글 정리 : http://sarojaba.tistory.com/141

     

    RAP를 사용하여 RCP 애플리케이션을 웹 애플리케이션으로 변환하기 : http://www.ibm.com/developerworks/kr/wa-rcprap/index.html

     

    Download the RCP / RAP Single Sourcing guidelines :
    http://eclipsesource.com/en/info/rcp-rap-single-sourcing-guideline/?user=fjcsla%40naver.com&pass=123456ab&pid=197&logintype=login

     

    rcp와 rap 설명 ppt :

    http://www.slideshare.net/caniszczyk/single-sourcing-rcp-and-rap

     

     

    ================================================================================

    RCP 모든 tutorial(이게 정석인듯) :

    http://www.vogella.com/articles/EclipseRCP/article.html

     

    RCP 책 site :

    http://eclipsercp.org/

     

    이클립스 카페 (현재는 wiki 페이지를 만들어 운영중. 하지만 카페에도 좋은 정보들이 많다. 스터디 방법역시 같이 알수 있어서 좋음) :

    http://cafe.naver.com/eclipseplugin/



    http://eclipse.or.kr/wiki/%EC%A1%B0%EB%A6%AC%EB%B2%95:RCP_FAQ

    RCP 위키 - RCP 설명 (한글)


     

    posted by cozyboy
    :
    언어&플랫폼/Eclipse RCP&RAP 2012. 11. 22. 09:34

    [정리]

     

    • RCP

     - 클라이언트 어플리케이션(알송, 계산기, 메모장 등과 같은)을 만들 수 있는 플랫폼

     - 손쉽게 UI 프로그램을 할 수 있다는 말.

     

    • RAP(Rich ajax platform)

     - 아작스 기반 웹을 만들 수 있는 플랫폼

     - RCP와 소스가 대부분 같다. 클라이언트 어플리케이션을 거이 그대로 웹으로 사용 할 수 있다(한마디로 RCP로 짜고, 조금만 수정하면 웹으로도 돌릴수 있다는 말)

     

     

    • SWT(Standard widget toolket)

     - 자바 swing과 같이 UI 라이브러리

     - swing과 차이점 : swing은 jvm을 타서 픽셀을 만든다면, SWT는 JNI를 이용하여 운영체제와 연동하여 사용하여 더 빠르다

     - 최하위 UI 라이브러리

     

    • JFace

     - SWT를 조금더 사용하기 쉽게 wrapping한 라이브러리

     - SWT에서 버튼 4개에 exit 이벤트가 먹히면 보두 각기 다른 이벤트로 할당된다면, JFace에선 하나의 이벤트로 할당되는 식 

     

    • Workbench

     - UI 상위 계층으로 이클립스의 에디터들이 마음대로 띄어졌다 붙었다 하는것, 혹은 같은 종류의 화면을 옆에 두면 탭으로 보이게 되는 등의 frame을 제공

     - layout이라고 보면 될듯, 애매모호하면 그냥 이클립스 UI가 어떻게 동작하는지를 보면 될듯.

     

    • OSGI(Open Service Gateway Initiative)

     - 설치된 플러그인이 서로 협력하고 상호작용하게 엮어주는 역할을 한다

     - 이클립스 같은 경우 jar의 집합이라고 보면 될것같다. jar에는 class파일들이 있고, 그림 파일들도 존재한다. 그것도 매우 많이 존재하는데 그것들을 연결하여 사용할 수 있는 환경을 갖추어야 한다. 그 환경을 OSGi라는 것이 갖추어 준다.

     - 이클립스의 install update를 하면 이클립스의 모습이 변한다. 그런것들은 모두 플러그인 형태로 설치되는 것이며, 그것들을 관리한다.

     

    • Equnux

     - OSGi를 이클립스에 맞게 만든 프로젝트라고 생각하면 될듯.

     - 이클립스에 플러그인을 설치할때 보면, 다시 시작/나중에 시작 등의 옵션이 있었는데 요즘엔 바로 적용이 생긴것 같다. 예전엔 무조건 재시작했어야 했었는데(맞나? 기억이 잘..) 지금은 새로운 플러그인이 종료없이 바로 적용이 가능하다. 그런것들이 equnux 프로젝트에 속해 있다가 OSGI단으로 내려왔다.

     

     

     - 이클립스에서 OSGI나 Equnux도 모조리 플러그인(번들 이라고도하고 컴포넌트라고도 한다)이며 jar 파일로 존재한다. 이클립스는 플러그인의 조합인 것이다.

     

     

    ==========================================================

     

    Rich client platform

    RAP 프로젝트는 Eclipse 개발 모델을 사용함으로써 Rich Internet Application을 구현하는 것이다. 그렇다면 "Eclipse 개발 모델"이란 것은 정확히 무엇인가? RAP는 자바™ 라이브러리와 Eclipse API를 사용하여 브라우저 기반의 Ajax 애플리케이션을 구현할 수 있도록 한다. SWT, JFace, Eclipse 워크벤치의 웹 실행 구현을 제공함으로써 이를 수행한다.

     

     

    [RCP 구조]

     

    [eclipse 구조]

     

     

     

    Ajax(Asynchronous JavaScript and XML) : http://blog.naver.com/jhoh86?Redirect=Log&logNo=10133727118

     

    eclipse 설명 : http://www.ibm.com/developerworks/kr/library/os-eclipse-platform/

     

    rcp 설명 : http://eclipse.or.kr/wiki/RCP

    rcp turorial  : http://sarojaba.tistory.com/141

     

    RAP를 사용하여 RCP 애플리케이션을 웹 애플리케이션으로 변환하기 : http://www.ibm.com/developerworks/kr/wa-rcprap/index.html

     

    워크벤치

    http://eclipse.or.kr/wiki/%EC%9B%8C%ED%81%AC%EB%B2%A4%EC%B9%98

    http://eclipseplugin.springnote.com/pages/502172

    http://www.ibm.com/developerworks/kr/library/os-eclipse-master1/

    구조 : http://blog.naver.com/PostView.nhn?blogId=civan&logNo=150008237119&categoryNo=9&viewDate=&currentPage=1&listtype=0

     

    swing과 swt/jface 비교 설명 : http://zerolism.tistory.com/35

     

     

     

    +++++++ 이런것도 생겼구나.

    rsp(rich server platform) : http://www.eclipse.org/proposals/rsp/ 

     

    posted by cozyboy
    :