spring boot启动报错
Posted 之墨_
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot启动报错相关的知识,希望对你有一定的参考价值。
启动spring boot报错如下:
网络上解决办法有
修改mapper映射关键字
@RequestMapping("/redisTest")
失败
An attempt was made to call a method that does not exist.
The attempt was made from the following lo
由于我使用spring boot整合redis,所以考虑到redis使用的连接池依赖版本和spring boot框架的版本可能不兼容,于是都调为较新的版本
父子版本的问题
最后找到一个方法,修改
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.6.3</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
<version>2.11.1</version>
</dependency>
</dependencies>
启动成功
以上是关于spring boot启动报错的主要内容,如果未能解决你的问题,请参考以下文章