1. mvn tomcat:tun Compilation error 控制台运行正确,浏览器访问500,解决办法

项目场景:

mvn tomcat:tun Compilation error 控制台运行正确,浏览器访问500,解决办法

原因分析:

<plugin>
         <groupId>org.apache.tomcat.maven</groupId>
           <artifactId>tomcat7-maven-plugin</artifactId>
           <version>2.1</version>
           <configuration>
               <port>9090</port>
               <path>/mgr</path>
               <uriEncoding>UTF-8</uriEncoding>
               <server>tomcat7</server>
           </configuration>
    </plugin>

pom.xml配置文件中使用tomcat7部署。

解决方案:

项目原来运行命令:mvn tomcat:run
控制台提供访问url:http://localhost:8080/maven-helloworld/

项目新运行命令:mvn tomcat7:run
控制台提供访问url:http://localhost:9090/mgr/

上一篇:Error:java: Compilation failed: internal java compiler error 解决办法


下一篇:electron-vue开发markdown编辑器快速开发(上)