kummababo.egloos.com

포토로그 마이가든



DB2 교육 자료 DB2

DB2 교육 자료


DB2 User Guide DB2


Ecllipse Brackets Highlight & Mark Occurrences 색상변경 Other

회색이여서 조금 긴소스면 구분하기 힘들었는데 변경하니 좋군..

Brackets Highlight

Jsp
General->Editors->Structured Text editors 선택
Appearance color options - matching brackets highlight 옵션 변경
Java
General->Java->Editor 선택
Appearance color options - matching brackets highlight 옵션 변경

Mark Occurrences
General->Editors->Text Editors->Annotations->Occurrences 옵션 변경

유용한 것들 Other

사용하는 Eclipse Plugin
    - viPlugin : 설치 다운후 features, plugins 를 Eclipse 각각의 폴더에 넣어준다. 디컴파일
        - viplugin_rc.xml 파일에 Default Setting 값을 변경하여 Eclipse Root 에 넣는다.
    - Vrapper : viPlugin 대체 프로그램 비교를 어찌해야할지.
        - Page Down: Ctrl+F
        - Page Up: Ctrl+B
        - Scroll Line Down: Ctrl+E
        - Scroll Line Up: Ctrl+Y
        - Find and Replace : F12
        - :set ic, :set hls, :set is
    - Extended VS Presentation
    - FileSync Plugin
    - Eclipse Color Theme - Theme download : http://www.eclipsecolorthemes.org 

자바 디컴파일러
    - jd-gui

원격접속 프로그램
    - mRemote
    - SecureCRT

다중 모니터 쓸때
    - ultramon

컴퓨터 하드웨어 & 드라이버 찾기
    - 3DP_Chip

Util
    - Launchy
    - StrokeIt
    - ShockSticker

DWR 에서 HTTP Servlet Objects 사용하기 Java

HttpServletRequest
HttpServletResponse
HttpSession
ServletContext
ServletConfig

1 :
import org.directwebremoting.WebContext;
import org.directwebremoting.WebContextFactory;

WebContext ctx = WebContextFactory.get();
req = ctx.getHttpServletRequest();
2 :
public class Remote {
public void method(int param, ServletContext cx, String s) { ... }
}

Remote.method(42, "test", callback);

정말 간단 하군..ㅎㅎ





1 2 3 4 5 6 7 8 9