1. 程式人生 > >tomcat目錄對映

tomcat目錄對映

環境:CentOS 6 + tomcat 7 + jdk 7

目前使用2種方法:

1.tomcat/conf/server.xml

  <Host name="localhost"  appBase="webapps"
        unpackWARs="true" autoDeploy="true">
    <Context path="/test" docBase="/path" debug="5"  crossContext="true" reloadable="true"/>
  </Host>

然後URL:http://IP:port/test即可檢視對映目錄

2.進tmocat/webapps,執行ln -s /path lndir
然後URL:http://IP:port/lndir即可檢視對映目錄