PageHelper connot be cast to org.apache.ibatis.plugin.Interceptor

来源:互联网 发布:mv视频制作软件 编辑:程序博客网 时间:2024/06/05 12:46

在淘淘商城里使用分页插件 时,由于自己的分页插件的版本较高,我用的是5.1.1。出现了标题的问题。于是开始解决:

刚开始 分页插件的配置

<plugins>
<plugin interceptor="com.github.pagehelper.PageHelper">
<property name="dialect" value="mysql"/>
</plugin>

</plugins>

  根据提示这是一个类型转换的错误。于是点进去发现 PageHelper根本没有实现Interceptor接口。在看分页插件的类时,发现PageInterceptor类实现了Interceptor接口。于是修改配置

<plugins>
<plugin interceptor="com.github.pagehelper.PageInterceptor">
<property name="properties" value="mysql"/>
</plugin>

</plugins>

这样就完美就可以使用分页插件了。


阅读全文
0 0
原创粉丝点击