Springboot配置分页PageHelper出现Error creating bean with name 'com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration'
springboot在版本2点几进行配置pageHelper会报错,原因是因为 springboot2.6+版本默认禁止循环依赖;
解决办法一:在启动类上添加注解
@SpringBootApplication(exclude = {PageHelperAutoConfiguration.class})
解决办法二:在配置文件yml中进行配置
spring
main:
allow-circular-references: true