首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
rowbounds专题
RowBounds分页(了解为主,不建议开发中使用)
1.不再使用sql实现分页(RowBounds分页) 1.接口 //分页2List<User> getUserByRowBounds(); 2.mapper.xml <!--分页2--><select id="getUserByRowBounds" resultMap="UserMap">select * from mybatis.user</select 3.测试 @Testpu
阅读更多...
7. limit实现分页、RowBounds分页【不推荐使用】、PageHelper插件
文章目录 本博客项目结构limit实现分页1. UserMapper接口,参数为map2. 修改UserMapper.xml文件3. 在测试类test中传入参数测试 RowBounds分页【不推荐使用】PageHelper 本博客项目结构 limit实现分页 Limit语法介绍 #语法SELECT * FROM table LIMIT stratIndex,pag
阅读更多...