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>
上一篇: Java中操作Redis的详细方法