廢話少說web
有參數能夠設置spring
在org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties 中mybatis
/** * Whether to expose and assume 1-based page number indexes. Defaults to "false", * meaning a page number of 0 in the request equals the first page. */ private boolean oneIndexedParameters = false;
因此在application.yml中app
spring:
data:
web:
pageable:
default-page-size: 20
size-parameter: rows
one-indexed-parameters: true
兼容Mybatis 分頁查詢dom
/** * laizhenwei * @param OrderPage * @return org.springframework.data.domain.Page<Order> */ @Override public Page<Order> page(OrderPage OrderPage){ return this.readPage( OrderPage.getPageable(), OrderPage); } /** * laizhenwei * @param pageable * @param OrderPage * @return org.springframework.data.domain.Page<Order> */ @Override public Page<Order> readPage(Pageable pageable, @Nullable OrderPage OrderPage) { return PageableExecutionUtils.getPage(getMapper().page(OrderPage), pageable, () -> getMapper().pageCount(OrderPage)); }
mybatis pageCount方法ide
<!-- 條件分頁查詢,數據 --> <select id="pageCount" resultType="long" parameterType="OrderPage"> SELECT COUNT(o.id) FROM `order` o LEFT JOIN `user` u ON o.`user_id` = u.`id` <trim prefix="where" prefixOverrides="and|or"> <if test="status!=null"> AND o.status = #{status} </if> <if test="billStatus!=null"> AND o.bill_status=#{billStatus} </if> <if test="type!=null"> AND o.type =#{OrderPage.type} </if> <if test="realName!=null"> AND u.real_name LIKE CONCAT('%',#{realName},'%') </if> <if test="origin!=null and origin!=''"> AND o.origin LIKE CONCAT('%',#{origin},'%') </if> <if test="destination!=null and destination!=''"> AND o.destination LIKE CONCAT('%',#{destination},'%') </if> </trim> </select>
controllerthis
@RequestMapping(path = "/page",method = RequestMethod.POST,consumes = MediaType.APPLICATION_FORM_URLENCODED_VALUE,produces = MediaType.APPLICATION_JSON_UTF8_VALUE) public ResponseVo<Page<Order>> page(@PageableDefault Pageable pageable, @ModelAttribute OrderPage orderPage){ ResponseVo<Page<Order>> responseVo = ResponseVo.success(); orderPage.setPageable(pageable); return responseVo.setData(orderService.page(orderPage)); }
傳入參數spa
結果code