tomcat服务器版本: 9.0.29
运行时报一下异常
org.apache.catalina.core.StandardContext.startInternal One or more listeners failed to start. Full details will be found in the appropriate container log file
org.apache.catalina.core.StandardContext.startInternal Context [] startup failed due to previous errors
网上查了一大堆没有找到结果, 然后突然发现我的代码没有问题
原来时 tomcat 服务器版本的问题, 然后通过 pom 依赖中的 maven 启动后完美运行
<plugin> <!-- tomcat插件控制 -->
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<!--端口控制-->
<port>8080</port>
<!--项目路径控制意味着http://localhost:8080/abc-->
<path>/</path>
<!--编码-->
<uriEncoding>${project.build.sourceEncoding}</uriEncoding>
</configuration>
</plugin>
总结: 大概是因为tomcat无法兼容