"一、后端" "二、前端" 一、后端 1、导入依赖 2、pojo层 3、dao层 mapper mapper.xml 4、service层 service serviceImpl 5、controller层 二、前端 1、导入layUI模板 2、导航栏 (Layui)或者 bootstrap) 或者 ...
分类:
其他好文 时间:
2020-04-28 09:40:43
阅读次数:
44
一、下载jar包并导入 jsqlparser-1.3.jar,下载地址: https://mvnrepository.com/artifact/com.github.jsqlparser/jsqlparser/1.3 pagehelper-5.1.6.jar,下载地址:https://mvnrepo ...
分类:
其他好文 时间:
2020-04-24 21:43:51
阅读次数:
72
本文首发于: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
PageHelper实现分页 如果你也在用 MyBatis,建议尝试该分页插件,这一定是最方便使用的分页插件。分页插件支持任何复杂的单表、多表分页。——PageHelper官网。 后端实现 ? 引入依赖 使用PageHelper之前,我们要先引入其依赖文件,或者jar包。这里使用maven项目演示, ...
分类:
其他好文 时间:
2020-04-13 09:14:06
阅读次数:
70
你可以从下面的地址中下载最新版本的 jar 包 https://oss.sonatype.org/content/repositories/releases/com/github/pagehelper/pagehelper/ http://repo1.maven.org/maven2/com/git ...
分类:
其他好文 时间:
2020-04-12 14:41:34
阅读次数:
57
如果你也在使用Mybatis,建议尝试PageHelper插件,这个一定是最方便使用的分页插件。该插件目前支持Oracle,Mysql,MariaDB,SQLite,Hsqldb,PostgreSQL六种数据库分页。PageHelper分页插件项目中的正式代码一共有个5个Java文件,这5个文件的说 ...
分类:
其他好文 时间:
2020-03-25 21:08:44
阅读次数:
85
一、插件介绍 PageHelper是针对Mybaits的分页插件,支持任何复杂的单表、多表分页。 二、基本用法 以springboot为例,有两种方式配置,一种是传统的,引入依赖,编写配置类;一种是使用application.yml进行配置。 第一种 1.引入依赖 2.配置插件 第二种 1.引入依赖 ...
分类:
其他好文 时间:
2020-03-19 21:43:00
阅读次数:
274
方法一:在main方法Application中配置@Bean PageHelper pageHelper(){ //分页插件 PageHelper pageHelper = new PageHelper(); Properties properties = new Properties(); pro... ...
分类:
编程语言 时间:
2020-03-14 01:13:55
阅读次数:
69
pagehelper的使用 后端 依赖 配置 控制层 前端 分页@current change="page" currentPage改变时会触发 通过axios接收后端的数据this.$axios.get().then() ...
分类:
其他好文 时间:
2020-03-07 09:24:52
阅读次数:
66
插件介绍 通用 Mapper 是一个可以实现任意 MyBatis 通用方法的框架,项目提供了常规的增删改查操作以及 Example 相关的单表操作。通用 Mapper 是为了解决 MyBatis 使用中 90% 的基本操作,PageHelper则提供通用的分页查询功能,使用它们可以很方便的进行开发, ...
分类:
移动开发 时间:
2020-03-05 11:49:14
阅读次数:
88