Maven自动部署Tomcat

标签: Maven 分类: Java 创建时间:2019-10-18 08:42:43 更新时间:2024-11-15 10:49:43

添加maven插件,使war自动部署到Tomcat的webapps目中。

1.修改Tomacat配置

修改tomcat安装目录下的server.xml和tomcat-users.xml,在tomcat-users.xml中添加用户和权限

1
2
3
4
5
6
7
8
9
10
11
<tomcat-users xmlns="http://tomcat.apache.org/xml"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://tomcat.apache.org/xml tomcat-users.xsd"
version="1.0">
<role rolename="manager"/>
<role rolename="manager-gui"/>
<role rolename="admin"/>
<role rolename="admin-gui"/>
<role rolename="manager-script"/>
<user username="tomcat" password="1q2w3e4r" roles="admin-gui,admin,manager-gui,manager,manager-script"/>
</tomcat-users>

在server.xml中配置上面添加的tomcat用户

1
2
3
4
5
6
7
<Server>
<server>
<id>TomcatServer</id>
<username>tomcat</username>
<password>1q2w3e4r</password>
</server>
</Server>

2.在mvn项目的pom.xml配置中添加tomcat7插件

配置插件中url为本机的tomcat服务地址,也可以是远程地址。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<build>
<plugins>
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.0</version>
<configuration>
<url>http://127.0.0.1:8088/manager/text</url>
<server>TomcatServer</server>
<username>tomcat</username>
<password>1q2w3e4r</password>
<path>/${project.build.finalName}</path>
</configuration>

</plugin>
</plugins>
</build>

3.执行tomcat7:deploy

在idea中执行tomcat7:deploy命令,或者是命令行输入:mvn tomcat7:deploy

4.部署成功

5.出现错误

(1) 在执行命令是出现测试错误: Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.22.2:test (default-test) on project demo: There are test failures.

先跳过测试好了,pom.xml中添加

1
2
3
4
5
6
7
8
9
10
11
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<testFailureIgnore>true</testFailureIgnore>
</configuration>
</plugin>
</plugins>
</build>

(2) 在项目目录下,出现了莫名奇妙的replay_pid212.log和hs_err_pid212.log

查看文件内容,多半是内存不足。

(3) 出现了:Cannot invoke Tomcat manager: Connection reset by peer: socket write error

好像是上传到一半然后文件就断掉了。

尝试着把已经上传的war删除试试,结果成功了。

小额赞助
本人提供免费与付费咨询服务,感谢您的支持!赞助请发邮件通知,方便公布您的善意!
**光 3.01 元
Sun 3.00 元
bibichuan 3.00 元
微信公众号
广告位
诚心邀请广大金主爸爸洽谈合作
每日一省
isNaN 和 Number.isNaN 函数的区别?

1.函数 isNaN 接收参数后,会尝试将这个参数转换为数值,任何不能被转换为数值的的值都会返回 true,因此非数字值传入也会返回 true ,会影响 NaN 的判断。

2.函数 Number.isNaN 会首先判断传入参数是否为数字,如果是数字再继续判断是否为 NaN ,不会进行数据类型的转换,这种方法对于 NaN 的判断更为准确。

每日二省
为什么0.1+0.2 ! == 0.3,如何让其相等?

一个直接的解决方法就是设置一个误差范围,通常称为“机器精度”。对JavaScript来说,这个值通常为2-52,在ES6中,提供了Number.EPSILON属性,而它的值就是2-52,只要判断0.1+0.2-0.3是否小于Number.EPSILON,如果小于,就可以判断为0.1+0.2 ===0.3。

每日三省
== 操作符的强制类型转换规则?

1.首先会判断两者类型是否**相同,**相同的话就比较两者的大小。

2.类型不相同的话,就会进行类型转换。

3.会先判断是否在对比 null 和 undefined,是的话就会返回 true。

4.判断两者类型是否为 string 和 number,是的话就会将字符串转换为 number。

5.判断其中一方是否为 boolean,是的话就会把 boolean 转为 number 再进行判断。

6.判断其中一方是否为 object 且另一方为 string、number 或者 symbol,是的话就会把 object 转为原始类型再进行判断。

每日英语
Happiness is time precipitation, smile is the lonely sad.
幸福是年华的沉淀,微笑是寂寞的悲伤。