Tomcat 폴더 폴더 구조 / Tomcat 웹 어플리케이션 폴더 구조
설명하기에 앞서 Tomcat 폴더 폴더 구조 / Tomcat 웹 어플리케이션 폴더 구조를 알면 좋다.
Tomcat.../context.xml, server.xml, web.xml
Tomcat../ 하위에 있는 폴더의 .xml 파일에 환경 설정을 하면 Tomcat 서버를 이용하는 모든 웹어플리케이션에 동일한 환경설정이 적용된다.
WEB-INF/web.xml | META-INF/context.xml
WEB-INF/web.xml | META-INF/context.xml 웹 어플리케이션 별로 각각 다른 환경설정을 해주고 싶다면 WEB-INF 와 META-INF폴더아래에 각각 설정을 해주면 된다.
- web.xml 설정에 대한 자세한 설명 참조 :https://jinwoonote.tistory.com/entry/%ED%86%B0%EC%BA%A3-webxml-%EC%84%A4%EB%AA%85
- context.xml 설정에 대한 자세한 설명 참조 : https://parkcheolu.tistory.com/130
- https://pro9dan.tistory.com/entry/Context-%EB%9E%80-%EB%AC%B4%EC%97%87%EC%9D%B8%EA%B0%80
'Servlet&JSP' 카테고리의 다른 글
[HttpServletResponse / HttpServletRequest] scope 스코프(영역) (0) | 2020.01.10 |
---|---|
[HttpServletResponse / HttpServletRequest] 리다이렉트(redirect) / 포워드(forward) (0) | 2020.01.10 |
[MVC] JSP만을 이용하는 모델 / JSP와 Servlet을 모두 이용하는 모델 (MVC Architecture) (0) | 2020.01.08 |
[Eclipse / Quantum] DB 플러그인 설치하기 (0) | 2020.01.08 |
절대 경로 / 상대 경로 (0) | 2020.01.06 |