欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

pageHelper 插件报错Caused by: java.lang.IllegalStateException: Cannot convert value of type......

程序员文章站 2022-04-13 08:33:55
...

报错信息:

Caused by: java.lang.IllegalStateException: Cannot convert value of type 'com.github.pagehelper.PageInterceptor' to required type 'org.apache.ibatis.plugin.Interceptor' 
for property 'plugins[0]': no matching editors or conversion strategy found

注意:最新版 pageHelper 只适配 3.4.6 版本的 Mybatis。
所以将 Mybatis 版本改为3.4.6 即可。

		<!-- pageHelper 分页插件-->
		<dependency>
            <groupId>org.mybatis</groupId>
            <artifactId>mybatis</artifactId>
            <version>3.4.6</version>
        </dependency>
        
		<!-- mybatis 版本-->
		<dependency>
            <groupId>com.github.pagehelper</groupId>
            <artifactId>pagehelper</artifactId>
            <version>5.1.9</version>
        </dependency>