原因:是PageHelper启动器 与父启动器spring-boot-starter-parent版本发生冲突 解决办法:更改spring-boot-starter-parent版本 附下图说明: SpringBoot项目启动时报错: 经过查看是PageHelper启动器的循环依赖问题 我用的解决办法是更换spring-boot-starter-parent启动器的版本 将上面版本改为2.4.5:...
解决方案:升级到新版,如1.4.1 <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</artifactId> <version>1.4.1</version></dependency> 举报/反馈 发表评论 发表 设为首页© Baidu 使用百度前必读意见反馈京ICP证030173号 京公网安备11000002000001号...
我在yml文件中加入了 main:allow-circular-references: true #清理循环引用的bean,也可以跳过 重新启动项目,完美
PageHelper循环依赖 com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration 关于这个报错是插件版本问题,要么降低你的版本,要么提高1.4.1 <!--分页插件--> <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</artifactId> <version>1.4.1</version> </depend...
springboot2.6好像禁止循环依赖还是啥的,翻来翻去没看到解决办法,后面去pageHelper github看,才看到最新版本已经解决了这个问题。 解决方案:更新到最新版本pageHelper,我的是1.4.1。 <!-- pagehelper 分页插件--> <dependency> <groupId>com.github.pagehelper</groupId> ...
1、项目中添加依赖 <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</artifactId> <version>1.3.0</version> </dependency> 1. 2. 3. 4. 5. 添加这一个依赖就够了,不用再引入mybatis的依赖,因为会自动引入多个依赖 ...
-- Mybatis --><dependency><groupId>org.mybatis.spring.boot</groupId><artifactId>mybatis-spring-boot-starter</artifactId><version>2.1.3</version></dependency> 四、application.properties pagehelper.helperDialect=mysqlpagehelper.reasonable=truepagehelper.supportMethodsArguments=truepagehelper.params=count...
PageHelper-Spring-Boot-Starter 帮助你集成分页插件到 Spring Boot。 PageHelper-Spring-Boot-Starter will help you use PageHelper with Spring Boot. Support PageHelper 5.x How to use 在pom.xml 中添加如下依赖: Add the following dependency to your pom.xml: <dependency> <groupId>com.github.pagehelper<...
MyBatis-Spring-Boot-Starter依赖将会提供如下: 1) 自动检测现有的DataSource。2) 将创建并注册SqlSessionFactory的实例,该实例使用SqlSessionFactoryBean将该DataSource作为输入进行传递。3) 将创建并注册从SqlSessionFactory中获取的SqlSessionTemplate的实例。4) 自动扫描您的mappers,将它们链接到SqlSessionTemplate并将其注册...
mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>2.1.3</version> </dependency> <!--pagehelper-spring-boot--> <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</artifactId> <version>1.2.5</version> <...