tomcat7插件映射虚拟目录

时间:2020-03-01 15:13:04 类型:JAVA
字号:    
 <groupId>org.apache.tomcat.maven</groupId>
          <artifactId>tomcat7-maven-plugin</artifactId>
          <version>2.2</version>
          <configuration>
            <port>8888</port>
            <!-- 设置项目路径 -->
            <path>/</path>
            <staticContextPath>/uploads</staticContextPath>
            <staticContextDocbase>F:/java/uploads</staticContextDocbase>
            <contextReloadable>false</contextReloadable>
			<useTestClasspath>true</useTestClasspath>
          </configuration>


<