springbootmybatis-plus分页功能-创新互联
springboot mybatis-plus分页创新互联是一家专业提供旅顺口企业网站建设,专注与网站建设、网站设计、html5、小程序制作等业务。10年已为旅顺口众多企业、政府机构等服务。创新互联专业网络公司优惠进行中。mybatis-plus 分页方法(单纯分页方法)
当前文章:springbootmybatis-plus分页功能-创新互联
文章链接:http://scgulin.cn/article/dogioo.html
- springboot mybatis-plus分页
- 1、创建配置类 MPConfig
- 2、在service和serviceImpl里配置
- 3、controller配置
@Configuration
public class MPConfig {public MybatisPlusInterceptor mybatisPlusInterceptor(){MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
interceptor.addInnerInterceptor(new PaginationInnerInterceptor());
return interceptor;
}
}
2、在service和serviceImpl里配置1、service配置
public interface BookService extends IService<**实体类名**>{public IPage<实体类名>getpage(int currentPage,int pageSize);
}
2、serviceImpl配置
@Autowired
private Mapper Mapper; // 需要哪个mapper,就导入哪个
@Override
public IPage<实体类名>getpage(int currentPage, int pageSize) {IPage page = new Page(currentPage,pageSize);
Mapper.selectPage(page,null);
return page;
}
3、controller配置@Autowired
private Service service; // 需要哪个service,就导入哪个
@GetMapping("{currentPage}/{pageSize}")
public R getpage(@PathVariable int currentPage,@PathVariable int pageSize){IPagepage = bookService.getpage(currentPage,pageSize);
return R.success(page);
}
你是否还在寻找稳定的海外服务器提供商?创新互联www.cdcxhl.cn海外机房具备T级流量清洗系统配攻击溯源,准确流量调度确保服务器高可用性,企业级服务器适合批量采购,新人活动首月15元起,快前往官网查看详情吧
当前文章:springbootmybatis-plus分页功能-创新互联
文章链接:http://scgulin.cn/article/dogioo.html