이클립스 2

[톰캣 실행 에러] Several ports (8005, 8080) required by Tomcat v9.0 Server at localhost 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 pro

[문제]Several ports (8005, 8080) required by Tomcat v9.0 Server at localhost 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). 이클립스가 의도치 않게 종료되어 재시작을 하려니 서버가 이미 사용중이라는 에러 팝업이 떴다. 서버가 제대로 종료되지 못했다는 의미.  [해결]종료되지 않은 port를 종료시켜 주어야 한다. 윈도우 옆 '찾기..

error 2024.05.03

[JSP의 시작] Dynamic Web Project 환경 설정 후 Hello 찍기

프로그램 설치 환경변수 설정 이클립스 실행 서버 연결 jsp 파일 생성 Hello 띄우기 1. 프로그램 설치 (사용 환경) 이클립스 JDK 11 아파치 톰캣 9 2. 환경변수 설정 (실제 파일이 있는 경로로 설정) path : C:\Program Files\Java\jdk-11.0.14\bin classpath : C:\Program Files\Java\jdk-11.0.14\lib JAVA_HOME : C:\Program Files\Java\jdk-11.0.14 CATALINA_HOME C:\apache-tomcat-9.0.64 3. 이클립스 실행 프로젝트가 생성될 위치 선택 후 Launch. Launch를 누르면 나오는 Welcome 페이지를 닫아준다. 하단의 Servers에서 새로운 서버를 연결하기 ..

JSP 2024.04.04