首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件开发 >

解决使用tomcat7-maven-plugin插件时 “Application already exists at path”的有关问题

2012-09-08 
解决使用tomcat7-maven-plugin插件时 “Application already exists at path”的问题使用tomcat7-maven-plug

解决使用tomcat7-maven-plugin插件时 “Application already exists at path”的问题

使用tomcat7-maven-plugin插件部署到tomcat服务器时,当服务器上已经有相同名字的项目就会导致

FAIL - Application already exists at path

解决方法是在pom.xml文件中配置tomcat7-maven-plugin插件时加入参数update

<plugin>      <groupId>org.apache.tomcat.maven</groupId>      <artifactId>tomcat7-maven-plugin</artifactId>      <version>2.0-SNAPSHOT</version>          <configuration>             <url>http://localhost:8080/manager/html</url>             <server>myserver</server>             <update>true</update>         </configuration>    </plugin>

热点排行