MyBatis limit 페이지 설정 의 실현
<select id="queryMyApplicationRecord" parameterType="MyApplicationRequest" resultMap="myApplicationMap">
 SELECT
 a.*,
 FROM
 tb_user a
 WHERE 1=1
 <if test="ids != null and ids.size()!=0">
  AND a.id IN
  <foreach collection="ids" item="id" index="index"
     open="(" close=")" separator=",">
   #{id}
  </foreach>
 </if>
 <if test="statusList != null and statusList.size()!=0">
  AND a.status IN
  <foreach collection="statusList" item="status" index="index"
     open="(" close=")" separator=",">
   #{status}
  </foreach>
 </if>
 ORDER BY a.create_time desc
 LIMIT (#{pageNo}-1)*#{pageSize},#{pageSize}; //   
</select>
올 바른 쓰기 1:
<select id="queryMyApplicationRecord" parameterType="MyApplicationRequest" resultMap="myApplicationMap">
 SELECT
 a.*,
 FROM
 tb_user a
 WHERE 1=1
 <if test="ids != null and ids.size()!=0">
  AND a.id IN
  <foreach collection="ids" item="id" index="index"
     open="(" close=")" separator=",">
   #{id}
  </foreach>
 </if>
 <if test="statusList != null and statusList.size()!=0">
  AND a.status IN
  <foreach collection="statusList" item="status" index="index"
     open="(" close=")" separator=",">
   #{status}
  </foreach>
 </if>
 ORDER BY a.create_time desc
 LIMIT ${(pageNo-1)*pageSize},${pageSize}; (  )
</select>
<select id="queryMyApplicationRecord" parameterType="MyApplicationRequest" resultMap="myApplicationMap">
 SELECT
 a.*,
 FROM
 tb_user a
 WHERE 1=1
 <if test="ids != null and ids.size()!=0">
  AND a.id IN
  <foreach collection="ids" item="id" index="index"
     open="(" close=")" separator=",">
   #{id}
  </foreach>
 </if>
 <if test="statusList != null and statusList.size()!=0">
  AND a.status IN
  <foreach collection="statusList" item="status" index="index"
     open="(" close=")" separator=",">
   #{status}
  </foreach>
 </if>
 ORDER BY a.create_time desc
 LIMIT #{offSet},#{limit}; (  ,     )
</select>
@Data
public class QueryParameterVO {
 
 private List<String> ids;
 
 private List<Integer> statusList;
 
 //        
 private int pageNo; //  1  
 
 //      
 private int pageSize;
 
 //       
 private int offSet;
 
 //         
 private int limit;
 
 //     offSet limit get  
 public int getOffSet() {
  return (pageNo-1)*pageSize;
 }
 
 public int getLimit() {
  return pageSize;
 }
}이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
MyBatis + SpringBoot로 CRUD 앱 만들기 ※ 불필요한 것은 배 ※ 1/2MyBatis를 사용하여 ToDo 목록을 만듭니다. 할 일 등록 (블랭크를 등록 할 수 없음) 할 일보기 할 일 변경 할 일 지우기 SpringBoot의 CRUD가 가능한 책은 있지만 MyBatis를 사용한 것은 적...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.