当前位置:   article > 正文

Gradle构建SpringBoot+Mybatis集成分页插件PageHelper_gradel 配置分页插件

gradel 配置分页插件

可点击此处下载完整项目哦:Springboot-Mybatis-Gradle

使用Gradle构建SpringBoot项目,使用Mybatis来持久化,尝试集成PageHelper分页插件,依然顺利都令到我吃惊,so easy!
首先,build.gradle中配置依赖

dependencies {
    compile group: 'com.github.pagehelper', name: 'pagehelper', version: '4.1.0'
}
  • 1
  • 2
  • 3

其次,写一个注册类

package com.cc.config;

import java.util.Properties;  
import org.springframework.context.annotation.Bean;  
import org.springframework.context.annotation.Configuration;  
import com.github.pagehelper.PageHelper;  

/*  
* 注册MyBatis分页插件PageHelper  
*/  

@Configuration  
public class MybatisConf {  
      @Bean  
      public PageHelper pageHelper() {  
         System.out.println("=========MyBatisConfiguration.pageHelper()");  
          PageHelper pageHelper = new PageHelper();  
          Properties p = new Properties();  
          p.setProperty("offsetAsPageNum", "true");  
          p.setProperty("rowBoundsWithCount", "true");  
          p.setProperty("reasonable", "true");  
          pageHelper.setProperties(p);  
          return pageHelper;  
      }  
} 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25

最后,在controller中直接使用即可:

  @ApiOperation(value="根据姓名查找用户", notes="根据name来查找")
@ApiImplicitParam(paramType="query", name = "name", value = "用户姓名", required = true, dataType = "String")
@RequestMapping(value="/findByName",method=RequestMethod.POST) 
@ResponseBody
public List<User> findByName(@RequestParam(value="name", required=true) String name){  
    /*  
     * 第一个参数是第几页;第二个参数是每页显示条数。  
     */  
    PageHelper.startPage(1,2);  
    return userService.fingByName(name);  
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

深入使用还待继续研究…

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/307513
推荐阅读
相关标签
  

闽ICP备14008679号