mybatisplus分頁查詢
mybatisplus實現分頁查詢步驟
-
編寫配置類注冊分頁組件
// 分頁插件 @Bean public PaginationInterceptor paginationInterceptor() { return new PaginationInterceptor(); }
-
分頁查詢
@Test public void testPage(){ // 參數一:當前頁 // 參數二:頁面大小 Page<User> page = new Page<>(2,5); userMapper.selectPage(page,null); page.getRecords().forEach(System.out::println); }