본문 바로가기
WEB

톰캣 설치 및 웹 개발환경 설정

by 둥바 2022. 6. 6.

개발환경 설정

1) 톰캣 설치(웹서버) - 아파치 톰캣 9.xx버전

https://tomcat.apache.org/download-90.cgi

 

Apache Tomcat® - Apache Tomcat 9 Software Downloads

Welcome to the Apache Tomcat® 9.x software download page. This page provides download links for obtaining the latest version of Tomcat 9.0.x software, as well as links to the archives of older releases. Unsure which version you need? Specification version

tomcat.apache.org

2) 오라클의 http port번호가 8080이기 때문에 충돌을 위해서 포트를 80으로 바꾸기

c:\tomcat9(설치한폴더)\conf\server.xml 에서 

--69line<Connector port="80" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" />바꾼 뒤 저장해준다.

 

 

3) tomcat9>bin에 startup.bat파일을 실행시킨다.

 

 

4) chrome을 띄워서 localhost를 쳤을 때 tomcat 사이트가 나온다면 서버 설정이 잘 된 것이다.

 

 

5) 이클립스에서 Dynamic Web Project 생성 ( 이클립스 활용 웹 작업 )

 

1.이클립스의 Open Perspective를 열어서 JavaEE로 변경

 

2. File -> New -> Dynamic Web Project 선택 (웹 프로젝트 만들기)

 

 

3.Preferences -> Server -> Server Runtime Environments 에서 add를 눌러 Apache Tomcat v9.0 추가하거나

또는 Target runtime을 Apache - Apache Tomcat v9.0 선택 후 next -> Installation directory에서 tomcat9(설치한 폴더)폴더 임포트한 후 finish -> generate web.xml deployment descriptor 체크한 후 finish 누르기

 

 

 

또는

 

 

4. 쓴 HTML파일 -> WEB 서버 연결(ctrl + F11) - 톰캣 서버 선택

 

 

 

- 다른 브라우저도 설치해서 등록하는 방법( 예 - 파이어폭스 )

Preference -> General - Web Browser - New 클릭 -> Name 적어주고 Location은 설치한 웹브라우저 실행파일 넣기

 

'WEB' 카테고리의 다른 글

UI 설계 및 구현  (0) 2022.06.22
XML, JSP 맛보기 및 입력 태그  (0) 2022.06.13
HTML5 레이아웃 및 시맨틱 태그  (0) 2022.06.09
HTML5 기본 태그  (0) 2022.06.08
웹의 개요  (0) 2022.06.07