将tomcat的应用路径从webapp里拿出来的方法。

在server.xml文件里找掉这行。
<Host name="localhost" debug="0" appBase="webapps"
       unpackWARs="true" autoDeploy="true"
       xmlValidation="false" xmlNamespaceAware="false">
改为如下
<Host name="localhost" debug="0" appBase="/data/web-index/run"
       unpackWARs="true" autoDeploy="true"
       xmlValidation="false" xmlNamespaceAware="false">
注:/data/web-index/run为应用存放路径。