这篇文章给大家介绍如何使用Springboot分页插件,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。
成都创新互联公司-云计算及IDC服务提供商,涵盖公有云、IDC机房租用、棕树数据中心、等保安全、私有云建设等企业级互联网基础服务,欢迎咨询:13518219792在springboot工程下的pom.xml中添加依赖
在工程的配置Application文件中添加如下代码
#pagehelper分页插件配置pagehelper.helperDialect=mysqlpagehelper.reasonable=truepagehelper.supportMethodsArguments=truepagehelper.params=count=countSql
对service层的更改
@Servicepublic class UserService2 { @Autowired private UserDao userDao; public PageInfo
对controller层的更改
@Controllerpublic class UserController2 { @Autowired private UserService2 userService2; @RequestMapping("queryAll") @ResponseBody public List
关于如何使用Springboot分页插件就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。