SpringBoot引入PageHelper插件后报错的解决方法

主要报错如下:

org.springframework.beans.factory.BeanCreationException: 
Error creating bean with name 'com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration': 
Post-processing of merged bean definition failed; nested exception is java.lang.IllegalStateException: Failed to introspect Class 

解决方式就是换一下pageHelper的版本就可以了

我的是换成1.2.3的版本就成功了


	com.github.pagehelper
	pagehelper-spring-boot-starter
	1.2.3

 

你可能感兴趣的:(springboot,mybatis)