maven的pom.xml配置

Posted antyi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven的pom.xml配置相关的知识,希望对你有一定的参考价值。

添加tomcat插件配置:

<!-- tomcat plugin -->
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<path>/</path>
<port>83</port>
<uriEncoding>UTF-8</uriEncoding>
<url>http://127.0.0.1/manager</url>
<server>tomcat7</server>
<contextReloadable>true</contextReloadable>
<warSourceDirectory>src/main/webapp</warSourceDirectory>
<contextReloadable>false</contextReloadable>
</configuration>
</plugin>
<!-- maven-assembly-plugin -->

 

其中port我为端口。

常见问题:

java.net.BindException: Address already in use: JVM_Bind <null>:8088(端口冲突)  

如出现以上问题请把端口号修改即可。

 

以上是关于maven的pom.xml配置的主要内容,如果未能解决你的问题,请参考以下文章

Maven pom.xml 全配置常用配置

maven,pom.xml里配置了插件,是怎么使用的

maven中pom.xml配置文件怎么看

6.maven的pom.xml配置文件中常用的配置标签解析

maven 03-pom.xml核心配置

maven之pom.xml文件配置