Recent Posts
Recent Comments
Adsense
Archives
Visitor
Today
Total
관리 메뉴

Annotation

톰캣 웹 루트 변경방법 본문

Various

톰캣 웹 루트 변경방법

devs 2015. 1. 28. 20:22

톰캣에서 서비스를 돌리면서 웹루트를 변경해야할 경우가 있습니다.

웹루트변경은 매우 쉽게 됩니다.


1. 톰캣 경로로 이동한다.

2. 톰캣 경로에서 conf 폴더로 이동한뒤,

3. server.xml을 열고

4.

<Host name="localhost"  appBase="webapps"
            unpackWARs="true" autoDeploy="true"
            xmlValidation="false" xmlNamespaceAware="false">


 1번라인 부근의 appBase="webapps" 부분을 원하는 경로로 바꿔준다.

예시)

<Host name="localhost"  appBase="D:\web-root"
            unpackWARs="true" autoDeploy="true"
            xmlValidation="false" xmlNamespaceAware="false">


이렇게 간단히 변경하면 적용됩니다. :)

Comments