SpringBoot 학습 - (페이지) SpringBoot 페이지 나누기 플러그인 PageHelper

1431 단어
텍스트 링크:https://juejin.im/post/5be80c1c6fb9a049f153b825
1. 페이지 의존 추가


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


2. 애플리케이션 구성yml
#     ,  mysql
pagehelper:
  helper-dialect: mysql
  reasonable: true
  support-methods-arguments: true
  params: count=countSql

3. 플러그인 사용
/**
     * 
     * @Title: getList
     * @Description:                
     * @param pageNum    
     * @param pageSize         
     * @return
     * @throws Exception
     */
    public List getList(int pageNum, int pageSize) throws Exception {
        //      ,        
        PageHelper.startPage(pageNum, pageSize);
        //   
        List typeList = typeDao.getList();
        return typeList;
    }

전재 대상:https://juejin.im/post/5be80c1c6fb9a049f153b825

좋은 웹페이지 즐겨찾기