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