首页 > 代码库 > 在tomcat中配置虚拟路径

在tomcat中配置虚拟路径

在server.xml的host节点下面添加如下xml,如:

<Context path="/medical_society_upload" docBase="k:/file" debug="0" reloadable="true"/>

添加后,如下:

<Host name="localhost"  appBase="webapps"
            unpackWARs="true" autoDeploy="true">
            <Context path="/medical_society_upload" docBase="k:/file" debug="0" reloadable="true"/>
        <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
               prefix="localhost_access_log" suffix=".txt"
               pattern="%h %l %u %t "%r" %s %b" />

</Host>


在tomcat中配置虚拟路径