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

这其实是PageHelper的版本问题,在4.x版本中的配置如下:

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

5.x以后需将PageHelper改成PageInterceptor

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

PageHelper cannot be cast to org.apache.ibatis.plugin.Interceptor_第1张图片

你可能感兴趣的:(SSM)