728x90

이클립스 실행하자마자 응답 없음에 걸릴 경우

 

 

1. STS실행파일과 같은 위치에 있는 'STS.init'파일에 본인 컴퓨터의 JAVA PATH를 추가

 

-vm

C:\Program Files\Java\jre1.8.0_171\bin\javaw.exe

 

(*vmargs 위에 추가)

 

 

2. 내가 해결본 방법

최근 실행한 프로젝트의 설정값이 남아서 에러가 나는 것이므로,

workspace를 재구성하기 위해 Package Explorer를 완전히 비우고(실제 소스파일들을 삭제하란 소리는 아님),

프로젝트 파일들을 다시 불러오자

 

 

 

estrella-0707.tistory.com/11

http://dev.azki.org/42

http://off-topic.biz/en/eclipse-hangs-at-startup-showing-only-the-splash-screen/

 

 

 

728x90
728x90

 

Several ports (8005, 8009) required by (서버명) are already in use. The server may already be running in another process, or a system process may be using the port. To start this server you will need to stop the other process or change the port number(s). 

=> was 재시작을 위한 포트가 이미 사용중인 경우이다. 포트를 사용하고 있는 pid를 확인하여 강제 종료해야한다.

 

 

//포트 사용중인 서비스 확인

netstat -a -n -o -p tcp  


//해당 pid 서비스종료

taskkill /f /pid 4444

 

 

Reference

 

http://myblog.opendocs.co.kr/archives/1702

 

 

 

728x90
728x90
경 고: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:Example' did not find a matching property.


이클립스 Tomcat 6.0.16부터 source라는 프로퍼티가 추가되었음

WTP가 source라는 속성을 프로젝트의 context에 추가해서 발생하는 것으로(참고) 문제를 일으키지는 않음




이 문제를 해결하려면 Eclipse에서 Tomcat서버를 더블클릭해서 설정부분의 Server Options에 있는 Publish module contexts to separate XML files를 체크한 뒤에 다시 톰캣을 구동하면 경고메시지가 사라짐

 

 

 

Reference

https://blog.outsider.ne.kr/559

 

728x90

+ Recent posts