Mybatis-Plus进行分页查询

依赖: 

            
            
                com.baomidou
                mybatis-plus-boot-starter
                3.1.1
            

config:

@Configuration
@MapperScan(value = {"com.etc.*.dao","com.etc.hk.*.dao"})
public class MybatisPlusConfig {

    /**
     * 分页插件
     */
    @Bean
    public PaginationInterceptor paginationInterceptor() {
        return new PaginationInterceptor();
    }
}

xml:

    

mapper:

    IPage queryBrandsByPage(Page page, @Param("key") String key);

 使用时把page传入会自动在sql语句后面添加limit

        Page page = new Page<>(pageNo,size);
        IPage iPage = this.baseMapper.queryBrandsByPage(page,key);

 

你可能感兴趣的:(mybatis)