PageHelper-com.github.pagehelper.PageHelper cannot be cast to org.apache.ibatis.plugin.Interceptor

目录

一、问题描述

二、问题原因

三、问题解决

四、顺带问题


一、问题描述

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

     2.maven依赖


	com.github.pagehelper
	pagehelper
	5.1.6

     3.插件配置

二、问题原因

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

三、问题解决

    1.将Maven依赖改为版本4

     2.将插件配置改为

     3.对应关系


	
	



	com.github.pagehelper
	pagehelper
	4.1.6

	
	



	com.github.pagehelper
	pagehelper
	5.1.6

四、顺带问题

    以上是问题引入高版本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

 

你可能感兴趣的:(05_MyBatis)