需要的jar包
1 | <dependency> |
在spring-dao.xml配置文件中添加
1 | <!-- 配置sqlSessionFactory --> |
在controller中的代码
1 |
|
在services层中的代码
1 |
|
前端页面
1 | <c:forEach items="${pageInfo.list}" var="user" varStatus="i"> |
PageInfo中的信息
1 | public class PageInfo<T> extends PageSerializable<T> { |
1 | public class PageSerializable<T> implements Serializable { |
springboot中使用分页插件
依赖
1 |
|
配置
1 | pagehelper: |