我是靠谱客的博主 大气电源,最近开发中收集的这篇文章主要介绍PageHelper-com.github.pagehelper.PageHelper cannot be cast to org.apache.ibatis.plugin.Interceptor,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

目录

一、问题描述

二、问题原因

三、问题解决

四、顺带问题


一、问题描述

    1.MyBatis使用PageHelper进行分页,提示以下错误

     2.maven依赖

<dependency>
	<groupId>com.github.pagehelper</groupId>
	<artifactId>pagehelper</artifactId>
	<version>5.1.6</version>
</dependency>

     3.插件配置

<plugin interceptor="com.github.pagehelper.PageHelper"/>

二、问题原因

    引入的版本和和配置的插件不匹配,在PageHelper5版本中MyBatis的插件指定不为PageHelper

三、问题解决

    1.将Maven依赖改为版本4

     2.将插件配置改为<plugin interceptor="com.github.pagehelper.PageInterceptor"/>

     3.对应关系

<plugins>
	<!-- PageHelper4版本插件配置 -->
	<plugin interceptor="com.github.pagehelper.PageHelper"/>
</plugins>
<!-- PageHelper4版本依赖 -->
<dependency>
	<groupId>com.github.pagehelper</groupId>
	<artifactId>pagehelper</artifactId>
	<version>4.1.6</version>
</dependency

---------------------------------------------------------------------

<plugins>
	<!-- PageHelper5版本配置 -->
	<plugin interceptor="com.github.pagehelper.PageInterceptor"/>
</plugins>
<!-- PageHelper5版本依赖 -->
<dependency>
	<groupId>com.github.pagehelper</groupId>
	<artifactId>pagehelper</artifactId>
	<version>5.1.6</version>
</dependency>

四、顺带问题

    以上是问题引入高版本jar在MyBatis中配置的插件是低版本的,如果反过来配置了高版本插件引入低版本jar,则会出现以后错误

Error parsing SQL Mapper Configuration. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'com.github.pagehelper.PageInterceptor'.  Cause: java.lang.ClassNotFoundException: Cannot find class: com.github.pagehelper.PageInterceptor

 

最后

以上就是大气电源为你收集整理的PageHelper-com.github.pagehelper.PageHelper cannot be cast to org.apache.ibatis.plugin.Interceptor的全部内容,希望文章能够帮你解决PageHelper-com.github.pagehelper.PageHelper cannot be cast to org.apache.ibatis.plugin.Interceptor所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(48)

评论列表共有 0 条评论

立即
投稿
返回
顶部