• 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(端口冲突)  

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

  • 相关阅读:
    Seaborn学习笔记2
    Seaborn学习笔记1
    HTML学习笔记4
    HTML学习笔记3
    HTML学习笔记2

    指针与引用
    函数
    字符串
    C++简易
  • 原文地址:https://www.cnblogs.com/antyi/p/6258636.html
Copyright © 2020-2023  润新知