美文网首页
The dependencies of some of the

The dependencies of some of the

作者: 一介书生独醉江湖 | 来源:发表于2022-06-06 10:22 被阅读0次
2.3.0.RELEASE 升级为 2.6.5之后出现以下问题:

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

Description:

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

┌──->──┐
|  com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration
错误的配置如下:
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.6.5</version>
        <relativePath /> <!-- lookup parent from repository -->
    </parent>
        <!--如果一定要用2.6.5,这里的分页器可能要用别的版本-->
        <dependency>
            <groupId>com.github.pagehelper</groupId>
            <artifactId>pagehelper-spring-boot-starter</artifactId>
            <version>1.2.12</version>
        </dependency>
正确的配置如下:
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.3.0.RELEASE</version>
        <relativePath /> <!-- lookup parent from repository -->
    </parent>
        <dependency>
            <groupId>com.github.pagehelper</groupId>
            <artifactId>pagehelper-spring-boot-starter</artifactId>
            <version>1.2.12</version>
        </dependency>

相关文章

网友评论

      本文标题:The dependencies of some of the

      本文链接:https://www.haomeiwen.com/subject/tntemrtx.html