首页 > 代码库 > maven 部署 tomcat
maven 部署 tomcat
确保maven 在eclipse配置好了
poix.xml
<build> <finalName>zs</finalName> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>tomcat-maven-plugin</artifactId> <version>1.1</version> <configuration> <path>/test</path> <url>http://localhost:8080/manager/text</url> <server>tomcat</server> <username>admin</username> <password>admin</password> <path>/zs</path> <update>true</update> </configuration> </plugin> <!-- <plugin> --> <!-- <groupId>org.apache.maven.plugins</groupId> --> <!-- <artifactId>maven-surfire-plugin</artifactId> --> <!-- <version>2.12.4</version> --> <!-- <configuration> --> <!-- <testFailtureIgnore>true</testFailtureIgnore> --> <!-- </configuration> --> <!-- </plugin> --> </plugins> </build>
3.tomcat conf/tomcat-users.xml添加
<role rolename="manager-gui"/> <role rolename="manager-script"/> <user username="admin" password="admin" roles="manager-gui, manager-script"/>
4.maven settings.xml(可以是自定义settings.xml)
<server> <id>tomcat</id> <username>admin</username> <password>admin</password> </server>
然后eclipse 中运行(前提是要tomcat先运行)
package tomat:redeploy
maven 部署 tomcat
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。