更多>>Java程序设计 Blog

The dependencies of some of the beans in the application context form a cycle: com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration

SpringBoot在启动时报错:APPLICATION FAILED TO START, The dependencies of some of the beans in the application context form a cycle:com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration

在启动 SpringBoot 项目时,发现启动失败,所报错误如下:

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

Description:

The dependencies of some of the beans in the application context form a cycle:

┌──->──┐
|  com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration
└──<-──┘

这是 SpringBoot pagehelp 分页运行依赖自循环错误。

出现这种错误大多是由于 SpringBoot 版本和 pagehelp 版本不匹配导致的。

解决方法:

可以适当提高 pagehelp 的版本号,或是适当降低 SpringBoot 的版本号。

        <dependency>

            <groupId>com.github.pagehelper</groupId>

            <artifactId>pagehelper-spring-boot-starter</artifactId>

            <version>1.4.1</version>

        </dependency>

具体的可以在 https://mvnrepository.com/ 网站中查找。

更换版本号,再次启动就正常了。


评论列表

no_photo
Cinema  
Cinema

2023-08-04 10:14:44

发表评论

用来接收审核回复提醒,请认真填写

  换一张?
captcha
看不清?点击图片换一张