問題:在使用mybatis分頁插件的時候,出現以下錯誤:
PageHelper-com.github.pagehelper.PageHelper cannot be cast to org.apache.ibatis.plugin.Interceptor
問題原因:在mybatis中添加插件時,interceptor屬性指定的類與版本不匹配
(1)分頁插件版本為4時:
1 interceptor="com.github.pagehelper.PageHelper"
(2)分頁插件版本為5時:
1 interceptor="com.github.pagehelper.PageInterceptor"
參考博客:https://blog.csdn.net/sinat_34104446/article/details/92679046