SpringCloud 程序启动报错 Correct the classpath of your application so that it contains compatible versions

一、报错信息

***************************
APPLICATION FAILED TO START
***************************

Description:

An attempt was made to call a method that does not exist. The attempt was made from the following location:

    org.apache.catalina.authenticator.AuthenticatorBase.startInternal(AuthenticatorBase.java:1318)

The following method did not exist:

    javax.servlet.ServletContext.getVirtualServerName()Ljava/lang/String;

The calling method's class, org.apache.catalina.authenticator.AuthenticatorBase, was loaded from the following location:

    jar:file:/C:/Users/wang_xinxin/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/9.0.58/tomcat-embed-core-9.0.58.jar!/org/apache/catalina/authenticator/AuthenticatorBase.class

The called method's class, javax.servlet.ServletContext, is available from the following locations:

    jar:file:/C:/Users/wang_xinxin/.m2/repository/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar!/javax/servlet/ServletContext.class
    jar:file:/C:/Users/wang_xinxin/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/9.0.58/tomcat-embed-core-9.0.58.jar!/javax/servlet/ServletContext.class

The called method's class hierarchy was loaded from the following locations:

    javax.servlet.ServletContext: file:/C:/Users/wang_xinxin/.m2/repository/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar


Action:

Correct the classpath of your application so that it contains compatible versions of the classes org.apache.catalina.authenticator.AuthenticatorBase and javax.servlet.ServletContext

二、报错分析
在这里插入图片描述
大概讲的是有两个/javax/servlet/ServletContext.class,导致冲突了。绿色框出来的是哪两个jar包,servlet-api-2.5.jar和tomcat-embed-core-9.0.58.jar。

三、问题解决

1.使用 maven helper 插件(没有的可以idea安装插件),查看 servlet-api 这个jar包是从哪个依赖引进来的,发现是 spring-cloud-starter-netflix-eureka-client 这个依赖引入的。
在这里插入图片描述
查看 spring-cloud-starter-netflix-eureka-client 依赖信息:

<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
    <version>3.1.1</version>
</dependency>

猜测出错原因:按理说依赖的父模块有spring-cloud-dependencies依赖,子模块引入相关依赖时不应该再指定版本,但是去掉<version>3.1.1</version>后依赖报错。

  1. 因为是项目子模块报错,查看父模块的pom.xml
    发现 spring-cloud-dependencies 缺少 <type>pom</type><scope>import</scope>,同时去掉spring-cloud-starter-netflix-eureka-client的版本号,刷新maven,程序不再报错。
    在这里插入图片描述
  • 1
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值