고인돌 프로젝트/[Step 1] 모델 1 , Jsp,beans + Oracle
7. [번외] Was (tomcat) 배포
고인돌개발자
2021. 8. 5. 14:57
1. War 파일 배포 위치 (tomcat 실행 시 war 압축이 디렉토리로 풀림)
2. tomcat 실행
3. ContextPath 변경하기
Server.xml 수정 ( apache-tomcat-9.0.50-windows-x64\apache-tomcat-9.0.50\conf폴더에 위치 )
<Context docBase="Model1" path="/Model1" reloadable="true" />
=>
<Context docBase="Model1" path="/" reloadable="true" />
* appBase="webapps" 를 변경하면 war 배포파일 위치도 변경 할 수 있음.