eclipse(WTP) 설치
1) Download
http://www.eclipse.org/
- eclipse 폴더: D:/cbd36/eclipse
- 작업 폴더 : D:/cbd36/ws_java
. 작업 폴더: 자바 소스, 컴파일된 class,jsp등의 관련 파일이 저장됨.
- library 폴더: D:/cbd36/lib/java
. library: 프로젝트 전에 compile된 class의 집합으로 개발자는 복사하여 사용함.
※ eclipse실행시에 JVM에러 발생시 아래처럼 수정할 것.
>>>>> eclipse/eclipse.ini
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
256M
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Xms40m
-Xmx512m <--------- Xmx256m으로 수정
2) eclipse 편집 환경 설정
. 글꼴 : Window --> Preferences --> General --> Apperance -->
Colors and Fonts --> Basic --> Text Font에서 수정
(@글꼴이 세로로 출력, 12 이상 권장)
. 취소 버퍼 크기: Window --> Preferences --> General --> Editors -->
Undo history size: 10240
"Insert spaces for Tabs, Show Line Number" Check
. 라인 번호: Window --> Preferences --> General --> Editors -->
Text Editors --> "Insert spaces for Tabs, Show Line Number" Check
. TAB의 공백 지정: Window --> Preferences --> Java --> Code Style -->
Formatter --> New...Button click -->
"java" 입력 후 확인 --> Tab policy를 "Spaces only"선택하고
확인 버튼을 클릭합니다.
★ 윈도우즈용 Java 1.6 Update 21 사용시 이클립스에서 다음의 에러 발생시의 처리.
Unhandled event loop exception
PermGen Space
해결 방법
eclipse.ini 파일을 열어 -vmargs 아래에 -XX:MaxPermSize=256m 를 추가.
--------------------------------------------------------------------------------------
-startup
plugins/org.eclipse.equinox.launcher_1.0.201.R35x_v20090715.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.0.200.v20090519
-product
org.eclipse.epp.package.jee.product
--launcher.XXMaxPermSize
256M
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
256m
-vmargs
-XX:MaxPermSize=256m
-Dosgi.requiredJavaVersion=1.5
-Xms40m
-Xmx512m
--------------------------------------------------------------------------------------
★ 윈도우즈용 Java 1.6 Update 24, Helios SR2 사용시 이클립스에서 다음의 에러 발생시의 처리.
해결 방법
eclipse.ini 파일을 열어 17번 라인 -vmargs 아래에 -XX:MaxPermSize=256m 를 추가.
--------------------------------------------------------------------------------------
-startup
plugins/org.eclipse.equinox.launcher_1.1.1.R36x_v20101122_1400.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.2.R36x_v20101222
-product
org.eclipse.epp.package.jee.product
--launcher.defaultAction
openFile
--launcher.XXMaxPermSize
256M
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
256m
--launcher.defaultAction
openFile
-vmargs
-XX:MaxPermSize=256m
-Dosgi.requiredJavaVersion=1.5
-Xms40m
-Xmx512m
--------------------------------------------------------------------------------------
'자기개발 > Tools' 카테고리의 다른 글
Tomcat 6.0 의 설치(Servlet Container) (0) | 2012.02.13 |
---|---|
MySQL Driver설치 & 추가 (0) | 2012.01.30 |
MySQL 5.1 설치 (0) | 2012.01.27 |
Eclipse 자주 쓰는 단축키 (0) | 2012.01.25 |
StarUML or Rational Rose 설치 (0) | 2012.01.22 |