Mapper分页插件使用

1.原来的分页使用:

1.Mapper增加分页查询方法

Mapper分页插件使用_第1张图片

2.Mapper.xml编写sql

Mapper分页插件使用_第2张图片

3. 测试用例

Mapper分页插件使用_第3张图片


二、分页插件的使用:

1.在MyBatis配置文件中集成

        
         interceptor= "com.github.pagehelper.PageHelper" >
             name= "dialect" value= "mysql" />
            
            
             name= "rowBoundsWithCount" value= "true" />
        


        
         interceptor= "com.github.abel533.mapperhelper.MapperInterceptor" >
            
             name= "IDENTITY" value= "MYSQL" />
            
             name= "mappers" value= "com.github.abel533.mapper.Mapper" />
        


2.测试用例

Mapper分页插件使用_第4张图片


你可能感兴趣的:(【java框架】)