maven tomcat plugin实现热部署
1、tomcat7的用户及权限配置
要实现热部署,自然就需要通过maven操作tomcat,所以就需要maven取得操作tomcat的权限,现在这一步就是配置tomcat的可操作权限。
在tomcat的安装目录下,修改conf / tomcat-user.xml文件,在<tomcat-users>节点下面增加如下配置:
<role rolename="manager-gui" /> <role rolename="manager-script" /> <user username="tomcat" password="tomcat" roles="manager-gui, manager-script" />
2、maven的server的配置
在maven的安装路径找到,修改d:\develop_tools\maven\apache-maven-3.3.9\conf \setting.xml文件 ,在<server>节点中添加tomcat7下配置的用户信息(id可以任意填写,但username和password必须和步骤1一致)
<server> <id>tomcat7</id> <username>tomcat</username> <password>tomcat</password> </server>
3、web项目pom.xml的配置
3.1、apache官方tomcat插件的配置
tomcat7的配置:
<plugins> <!-- 第一种方式: apache官方tomcat插件,支持deploy --> <plugin> <groupid>org.apache.tomcat.maven</groupid> <artifactid>tomcat7-maven-plugin</artifactid> <version>2.0-snapshot</version> <configuration> <url>http://localhost:8080/manager/text</url> <server>tomcat7</server> </configuration> </plugin> </plugins>
3.2 第三方tomcat插件,支持redeploy
tomcat7的配置:
<plugin> <groupid>org.codehaus.mojo</groupid> <artifactid>tomcat-maven-plugin</artifactid> <version>1.1</version> <configuration> <url>http://localhost:8080/manager/text</url> <server>tomcat7</server> <ignorepackaging>true</ignorepackaging> </configuration> </plugin>
3.3 maven仓库的配置 (此为可选项):
<repository> <id>people.apache.snapshots</id> <url>http://repository.apache.org/content/groups/snapshots-group/</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> <pluginrepository> <id>apache.snapshots</id> <name>apache snapshots</name> <url>http://repository.apache.org/content/groups/snapshots-group/</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </pluginrepository>
4、设置部署命令
一般使用搜是在eclipse中,可以右键点击需要部署的项目,run as -> run configurations -> maven build -> 右键 new,这样配置一个新的maven命令
具体配置命令方法:
1.在base directory中选择自己的项目
2.goals的配置
如果使用apache的官方插件,那么就用 “tomcat7:deploy” 命令
如果使用第三方插件,那么就用 “tomcat:redeploy”命令
5、附相关错误及解决办法:
connection refused错误
报错信息如下:
[error]failed to execute goal org.apache.tomcat.maven: tomcat7-maven-plugin: 2.0- snapshot: deploy (default-cli) on project helloworld: cannot invoke tomcat manager: connection refused: connect -> [help 1]
原因:未启动tomcat服务器
解决办法:先启动tomcat服务器再选择run
undeploy 失败
在window系统下执行在执行 mvn tomcat7:undeploy时,会有残留在tomcat目录下
解决方法:在tomcat的配置文件context.xml中 的< context >标签中添加属性:antijarlocking=”true”
antiresourcelocking=”true”
即
<context antijarlocking="true" antiresourcelocking="true">
401错误
报错信息如下:
[error] failed to execute goal org.apache.tomcat.maven:tomcat7-maven-plugin: 2.0-snapshot:deploy (default-cli) on project helloworld: cannot invoke tomcat manager: server returned http response code: 401 for url: http://localhost:8080/manager/text/deploy?path=%2fhelloworld -> [help 1]
原因:权限问题
解决办法在$catalina_base/conf/tomcat-users.xml,
如d:\apache-tomcat-7.0.34\conf\tomcat-users.xml文件中添加权限
<role rolename=”manager”/> <user username=”admin” password=”admin” roles=”manager”/>
修改pom.xml文件,在<configuration> </configuration>中添加
<username>admin</username> <password>admin</password>
403错误
报错信息如下:
[error] failed to execute goal org.apache.tomcat.maven:tomcat7-maven-plugin: 2.0-snapshot:deploy (default-cli) on project helloworld: cannot invoke tomcat manager: server returned http response code: 403 for url: http://localhost:8080/manager/html/deploy?path=%2fhelloworld -> [help 1]
原因:产生该问题有可能因为两个原因,具体参见解决办法
解决办法:
1)如果使用的是tomcat 7,需要修改pom.xml中部署的url地址,将<url>http://localhost:8080/manager</url>改<url>http://localhost:8080/manager/text</url>
2)给tomcat用户权限分配上,需要同时具备manager-gui和manager-script权限,我在遇到该问题时,就是忘了分配manager-script权限。
正确的conf/tomcat-users.xml配置应为:
<tomcat-users> <role rolename="manager-gui"/> <role rolename="manager-script"/> <user username="admin” password="admin" roles="manager-gui, manager-script"/> </tomcat-users>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
推荐阅读
-
maven tomcat plugin实现热部署
-
SpringBoot项目在IntelliJ IDEA中如何实现热部署
-
IntelliJ IDEA使用maven实现tomcat的热部署
-
Maven项目打包成war包部署到Tomcat的方法
-
HTML5离线缓存在tomcat下部署可实现图片flash等离线浏览
-
Spring Boot集成spring-boot-devtools开发时实现热部署的方式
-
如何使用IDEA将maven项目打成war包,并部署到tomcat服务器上
-
maven项目打包成war格式(idea)并部署到Tomcat上
-
在IDEA内使用Tomcat热部署SpringBoot项目
-
部署web01,web02,nfs,db01,backup,搭建wordpress,WeCenter,实现共享,热备,实时备份