您好,登錄后才能下訂單哦!
這篇“mybatis-plus返回查詢總記錄數的方法是什么”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“mybatis-plus返回查詢總記錄數的方法是什么”文章吧。
mp框架提供了selectCount方法,來查詢總記錄數;
需求:
查找薪水大于3500 名字里有“小”的 員工的個數
sql實現:
select count(*) from t_employee where salary>3500 and name like ‘%小%'
代碼實現:
@Test public void selectCountByQueryWrapper11(){ QueryWrapper<Employee> queryWrapper=new QueryWrapper(); // QueryWrapper<Employee> queryWrapper2=Wrappers.<Employee>query(); queryWrapper.gt("salary",3500).like("name","小"); Integer count = employeeMapper.selectCount(queryWrapper); System.out.println(count); }
package com.integration.config; import com.baomidou.mybatisplus.extension.plugins.PaginationInterceptor; import org.mybatis.spring.annotation.MapperScan; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; @Configuration @MapperScan("com.integration.mapper") public class MybatisPlusConfig { @Bean public PaginationInterceptor paginationInterceptor() { PaginationInterceptor page = new PaginationInterceptor(); return page; } }
以上就是關于“mybatis-plus返回查詢總記錄數的方法是什么”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。