PageHelper userList()不返回结果集而是返回一个Page对象

 使用高版本的PageHelper 


    com.github.pagehelper
    pagehelper
    5.1.4

 若出现错误:

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

则将:
 

    
        
            
           
        
    

更改为:

    
        
            

        
    

这是因为com.github.pagehelper.PageHelper这个接口,自4.0.0版本以后就不再使用了,转而实现这个接口:org.apache.ibatis.plugin.Interceptor。且自动识别数据库,不需要手动指定了。

你可能感兴趣的:(PageHelper userList()不返回结果集而是返回一个Page对象)