SSM 纯注解开发 时遇到的异常及解决方案

博客作者在尝试运行项目时遇到org.apache.catalina.core.StandardContext的启动异常,经过排查发现并非代码问题,而是Tomcat服务器版本9.0.29不兼容导致。通过使用maven的tomcat7-maven-plugin插件并配置相关参数,成功解决了启动问题,项目得以正常运行。
摘要由CSDN通过智能技术生成

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无法兼容

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值