学习SpringBoot遇到的问题之二
程序员文章站
2022-04-28 18:29:52
...
启动SpringBoot的时候遇到A attempt was made to call the method reactor.retry.Retry.retryMax(I)Lreactor/retry/Retry;but it does not exist .its class reactor retry,Retry…
大体上就是这样的错误,我也是看了好多文章都才明白,报错的根本原因:
根本原因就是pom.xml文件中版本依赖有问题,比如你的项目依赖的是2.1.0版本的工程,你其他的子依赖,必须也是2.1.0。我报错的原因就是spring-web的version版本是5.2.0(这是属于父级),而spring-webmvc的version版本是4.2.5(这是属于子级),版本号可以在右侧maven中可以看到,我是通过看他们的依赖关系找到的错误:pom文件里右键–>Diagrams–>ShowDependenies,有错误的地方会爆红。。。。
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</dependency>
下一篇: python数据清洗--常用工具