摘要: 学习视频 https://www.bilibili.com/video/BV17E411N7KN视频地址 简介 MyBatis-Plus(简称 MP)是一个 MyBatis 的增强工具,在 MyBatis 的基础上只做增强不做改变,为简化开发、提高效率而生。 特性 无侵入:只做增强不做改变,引入它不 阅读全文
posted @ 2021-03-10 15:26 why768 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 新建Springboot项目,在pom.xml中添加依赖: <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocat 阅读全文
posted @ 2021-03-10 10:50 why768 阅读(84) 评论(0) 推荐(0) 编辑
摘要: 一、在pom.xml中引用相关依赖 <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.4.0</version> </dependency> <dep 阅读全文
posted @ 2021-03-10 10:28 why768 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 1、index.html <div id="banner_id" style="display: flex;justify-content: center;"> <div class="banner_box"> <header class="header_box"> <img src="./fron 阅读全文
posted @ 2020-12-31 14:03 why768 阅读(170) 评论(0) 推荐(0) 编辑
摘要: server { listen 80; server_name localhost; rewrite ^(.*)$ https://$host$1 permanent; } server { listen 443 ssl; server_name localhost; proxy_buffering 阅读全文
posted @ 2020-12-31 13:53 why768 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 1 <el-autocomplete style="width:300px" v-model="inputName" :fetch-suggestions="querySearch" clearable placeholder="请输入搜索的内容"></el-autocomplete> 2 3 da 阅读全文
posted @ 2020-10-13 18:10 why768 阅读(3856) 评论(0) 推荐(0) 编辑
摘要: 一、步骤 1、 使用root登陆系统,打开命令行窗口。 选择安装目录,推荐/usr/local 复制安装包到该目录下,执行解压缩命令: tar -xzvf mysql-5.7.21-linux-glibc2.12-x86_64.tar.gz2、 方便展示,修改文件夹名称: mv mysql-5.7. 阅读全文
posted @ 2020-08-06 11:27 why768 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 1、index.html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>XXXXXXX</title> <meta name="renderer" content="webkit"> <meta http-equiv="X-U 阅读全文
posted @ 2020-08-06 09:52 why768 阅读(541) 评论(0) 推荐(0) 编辑
摘要: 1、js代码 1 <script> 2 var second_class=getParams("second_class"); 3 var first=getParams("first"); 4 var title=getParams("title"); 5 var pageIndex = getP 阅读全文
posted @ 2020-08-06 09:39 why768 阅读(2150) 评论(0) 推荐(0) 编辑
摘要: //匹配的日期格式为 :yyyy-MM-dd hh:mm:ssfunction check(time){ var r = time.match(/^(\d{1,4})(-|\/)(\d{1,2})\2(\d{1,2}) (\d{1,2}):(\d{1,2}):(\d{1,2})$/); if(r== 阅读全文
posted @ 2020-01-07 11:07 why768 阅读(1400) 评论(0) 推荐(0) 编辑