Fork me on GitHub
摘要: 分页 思考:为什么要分页? 减少数据的处理量 1 使用limit分页 select * from user limit startIndex,pageSize; 使用Mybatis实现分页,核心是SQL 接口 List<User> getUserByLimit(HashMap<String,Inte 阅读全文
posted @ 2020-08-09 16:40 CodeHuba 阅读(69) 评论(0) 推荐(0) 编辑