首页 > 技术文章 > maven中tomcat怎么配置本地虚拟路径

mollie-x 2019-03-24 22:39 原文

1.修改tomcat7-maven-plugin-2.2.jar包

重新下载这个包,并删除maven自动下载的jar,手动放进去
请点击下载 tomcat7-maven-plugin-2.2.jar

2.tomcat插件配置

<plugins>
<!-- 配置Tomcat插件 -->
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<configuration>
<port>8001</port>
<path>/</path>
<staticContextPath>/img</staticContextPath>
<staticContextDocbase>D:/images/</staticContextDocbase>
<contextReloadable>false</contextReloadable>
<useTestClasspath>true</useTestClasspath>
</configuration>
</plugin>
</plugins>

 

推荐阅读