maven中tomcat怎么配置本地虚拟路径


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>

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM