Spring Boot 整合 PageHelper 依赖导入 <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</artifactId> <version> ...
分类:
编程语言 时间:
2021-01-25 10:44:33
阅读次数:
0
1、Maven配置 <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper</artifactId> <version>3.4.2</version> </dependency> <dependency ...
分类:
其他好文 时间:
2020-07-24 09:38:28
阅读次数:
69
一、Thymeleaf简介 Thymeleaf模板引擎主要用来做视图的展示。在springboot中默认支持thymeleaf,来替代原来ssm项目中的jsp。相较于jsp或其他的模板引擎,thymeleaf有如下特点: 1)动静结合,thymeleaf 既可以在有后台交互的情况下运行,也可以在不与 ...
分类:
编程语言 时间:
2020-07-09 00:37:38
阅读次数:
67
public PageInfo Get(string name, int PageIndex = 1, int PagepSize = 3) { PageInfo pg = new PageInfo(); if (name == null) { name=""; } int count = pg.D ...
分类:
其他好文 时间:
2020-06-30 20:25:06
阅读次数:
48
PageInfo getPageInfo(int pageNum, int pageSize, List<Map> list) { Page page = new Page(pageNum, pageSize); int total = list.size(); if (total > pageSi ...
分类:
其他好文 时间:
2020-06-18 11:00:59
阅读次数:
33
package com.lzl.service; import com.github.pagehelper.PageInfo;import com.lzl.pojo.Mingxi;import com.lzl.pojo.Wuliao; public interface MingxiService { ...
分类:
其他好文 时间:
2020-05-27 12:24:43
阅读次数:
64
分页需要用到的俩个参数;pageNum(页码)、pageSize(每页的条数) 有时候前端(移动端)传递的是start(从多少条记录开始)、count(获取的数量,也就是条数) 后端方法需要的是;pageNum和pageSize 一、将start、count转换为pageNum和pageSize ( ...
分类:
编程语言 时间:
2020-05-12 16:45:38
阅读次数:
56
本文首发于:https://antoniopeng.com整合Druid数据源引入依赖在pom.xml中引入druid-spring-boot-starter和mysql-connector-java依赖<!--druid-spring-boot-starter--><dependency><groupId>com.alibaba</groupId>
分类:
编程语言 时间:
2020-04-19 09:20:06
阅读次数:
90
使用thyme leaf模板引擎的时候,如果某个片段出错,那么该片段后面所有都不再显示。 1.thymeleaf局部刷新: 前端: myOrders.html: js: 后端: 2.ajax发送数组对象给后端: 前端: html: <tr th:each="product:${pageInfo.li ...
分类:
编程语言 时间:
2020-02-09 18:28:53
阅读次数:
79
导入依赖 application.yml配置 在serviceImpl中使用 详解 首先使用:PageHelper.startPage(pageNum, pageSize, true); 一定要带true,此时会有总条数,总页数等信息 pageInfo信息 参考 https://pagehelper ...
分类:
其他好文 时间:
2020-01-29 21:39:40
阅读次数:
96