真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

SpringBoot整合Pagehelper(為什么PageHelper分頁不生效)

引入包
https://mvnrepository.com/artifact/com.github.pagehelper/pagehelper-spring-boot-starter/1.2.10

成都創(chuàng)新互聯(lián)公司成立于2013年,我們提供高端成都網(wǎng)站建設(shè)、成都網(wǎng)站制作、成都網(wǎng)站設(shè)計、網(wǎng)站定制、營銷型網(wǎng)站小程序開發(fā)、微信公眾號開發(fā)、網(wǎng)站推廣服務(wù),提供專業(yè)營銷思路、內(nèi)容策劃、視覺設(shè)計、程序開發(fā)來完成項(xiàng)目落地,為建筑動畫企業(yè)提供源源不斷的流量和訂單咨詢。


        
        
            com.github.pagehelper
            pagehelper-spring-boot-starter
            1.2.10
        

配置文件


import com.github.pagehelper.PageHelper;
import org.apache.ibatis.session.Configuration;
import org.mybatis.spring.boot.autoconfigure.ConfigurationCustomizer;
import org.springframework.context.annotation.Bean;
import java.util.Properties;

/**
 *配置文件
 * @author liwen406
 * @date 2019-04-20 12:14 2019-04-20 13:20
 */
@org.springframework.context.annotation.Configuration
public class MyBatisConfig {

    /**
     * 目的防止駝峰命名規(guī)則
     * @return
     */
    @Bean
    public ConfigurationCustomizer configurationCustomizer(){
        return new ConfigurationCustomizer(){

            @Override
            public void customize(Configuration configuration) {
                configuration.setMapUnderscoreToCamelCase(true);
            }
        };
    }

    /**
     * 分頁插件
     * @return
     */
    @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;
    }
}

dao mapper


    @Select("SELECT * from tbl_emp")
    List selectByExample(Employee example);

Service

   @Override
    public List selectByExample() {

        return projectInfodao.selectByExample(null);
    }

Controller

    @GetMapping("/page/{start}/{end}")
    @ResponseBody
    public List likeName(@PathVariable int start, @PathVariable int end) throws Exception {
        /*
         * 第一個參數(shù):第幾頁;
         * 第二個參數(shù):每頁獲取的條數(shù).
         */
        PageHelper.startPage(start, end);
        return projectInfService.selectByExample();
    }

Spring Boot 整合Pagehelper(為什么PageHelper分頁不生效)


本文名稱:SpringBoot整合Pagehelper(為什么PageHelper分頁不生效)
地址分享:http://weahome.cn/article/gessss.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部