pom.xml配置文件改端口号

来源:互联网 发布:foobar for mac 编辑:程序博客网 时间:2024/05/16 00:36

点击打开链接

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">  <build>  <pluginManagement>  <plugins>  <!-- tomcat plugin -->  <plugin>  <groupId>org.codehaus.mojo</groupId><artifactId>tomcat-maven-plugin</artifactId><version>1.1</version><configuration><path>/</path><port>8880</port><charset>utf-8</charset><uriEncoding>UTF-8</uriEncoding></configuration>  </plugin>  </plugins>  </pluginManagement>  </build>


0 0
原创粉丝点击