반응형
+ 이클립스 버그
+ javax.servlet을 못 찾을 때.
해당 프로젝트의 속성(config)에서 runtime server를 다시 추가하고,
라이브러리 우선 순위를 위로 올려준다. (주로 우선순위 문제이다.)
+ tomcat 서버 추가가 안 될 때.
It is a bug in Eclipse. I had exactly the same problem, also on Ubuntu with Eclipse Java EE Juno.
Here is the workaround that worked for me:
Close Eclipse
In {workspace-directory}/.metadata/.plugins/org.eclipse.core.runtime/.settings delete the following two files:
org.eclipse.wst.server.core.prefs
org.eclipse.jst.server.tomcat.core.prefs
Restart Eclipse
+ ADT Manager가 안보일때
Windows - customize perspective
tool bar visibility와 command groups avaliavility에 adroid sdk and avd manager를 체크한다.
+이클립스 로드시 'd:skin' 요소로 시작하는 부적합한 콘텐츠가 발견되었습니다... 라고 오류날때
오류 메시지에도 보이듯이, "Android Ware(시계같은 Wareable 장치 개발)" 에서 오류가 나는거니, 이거 다 지워 주면된다.
이건 "Android Ware" 의 버그로 알려져 있는데, 나의 경우는 필요가 없으니 지워 버린거고, 필요할 경우 재 설치하면 해결 된다고 한다.
device.xml 에서 "<d:skin>" 항목을 지워주기만 해도 된다는 얘기가 있기도 하다...
주로 삭제해야될 패키지 2개
Android wear arm eabi v7a system image ; 22 1
Android wear intel x86 atom system image ; 22 1
+ 이클립스 실행 실패시.
eclipse.ini 파일을 열고 아래에서 javaw 경로명을 맞추고 -vm 부분을 추가한다. (주의! -vm 옵션은 반드시 -vmargs보다 위에 있어야 된다.)
-startup
plugins/org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20140116-2212
-product
org.eclipse.epp.package.jee.product
--launcher.defaultAction
openFile
--launcher.XXMaxPermSize
1024M
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
1024m
--launcher.defaultAction
openFile
--launcher.appendVmargs
-vm
C:\Program Files\Java\jdk1.7.0_60\bin\javaw.exe
-vmargs
-Dosgi.requiredJavaVersion=1.7
-Xms512m
-Xmx1024m
'Develop > Java' 카테고리의 다른 글
[JS] 입력값 실시간 검증 (0) | 2018.03.06 |
---|---|
[JS] 폼 입력값 검증 (0) | 2018.03.06 |
tomcat 부팅시 자동 구동 스크립트 (0) | 2018.03.06 |
tomcat 프로세스 모니터링. 죽으면 다시 시작 (0) | 2018.03.06 |
CentOS, tomcat 타임존 문제 (2) | 2018.03.06 |