摘要: 笔记 3、SpringBoot2.x异步任务实战(核心知识) 简介:讲解什么是异步任务,和使用SpringBoot2.x开发异步任务实战 1、什么是异步任务和使用场景:适用于处理log、发送邮件、短信……等 下单接口->查库存 100 余额校验 150 风控用户100 .... 2、启动类里面使用@ 阅读全文
posted @ 2019-08-28 23:16 高山-景行 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 笔记 2、SpringBoot常用定时任务配置实战 简介:SpringBoot常用定时任务表达式配置和在线生成器 1、cron 定时任务表达式 @Scheduled(cron="*/1 * * * * *") 表示每秒 1)crontab 工具 https://tool.lu/crontab/ 2、 阅读全文
posted @ 2019-08-28 22:53 高山-景行 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 笔记 1、SpringBoot定时任务schedule讲解 简介:讲解什么是定时任务和常见定时任务区别 1、常见定时任务 Java自带的java.util.Timer类 timer:配置比较麻烦,时间延后问题 timertask:不推荐 2、Quartz框架 配置更简单 xml或者注解 3、Spri 阅读全文
posted @ 2019-08-28 21:53 高山-景行 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 笔记 4、Redis工具类封装讲解和实战 简介:高效开发方式 Redis工具类封装讲解和实战 1、常用客户端 https://redisdesktop.com/download 2、封装redis工具类并操作 开始 主要讲开发中的技巧 Redis 桌面管理工具 RedisDesktopManager 阅读全文
posted @ 2019-08-28 21:25 高山-景行 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 笔记 3、SpringBoot2.x整合redis实战讲解 简介:使用springboot-starter整合reids实战 1、官网:https://docs.spring.io/spring-boot/docs/2.1.0.BUILD-SNAPSHOT/reference/htmlsingle/ 阅读全文
posted @ 2019-08-28 20:56 高山-景行 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 笔记 2、源码编译安装Redis4.x 简介:使用源码安装Redis4.x和配置外网访问 1、快速安装 https://redis.io/download#installation wget http://download.redis.io/releases/redis-4.0.9.tar.gz t 阅读全文
posted @ 2019-08-28 20:31 高山-景行 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 笔记 1、分布式缓存Redis介绍 简介:讲解为什么要用缓存和介绍什么是Redis,新手练习工具 1、redis官网 https://redis.io/download 2、新手入门redis在线测试工具:http://try.redis.io/ 开始 命令行操作界面 阅读全文
posted @ 2019-08-28 20:07 高山-景行 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 笔记 5、SpringBoot整合mybatis之事务处理实战 简介:SpringBoot整合Mybatis之事务处理实战 1、service逻辑引入事务 @Transantional(propagation=Propagation.REQUIRED) 2、service代码 @Override @ 阅读全文
posted @ 2019-08-28 18:29 高山-景行 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 笔记 4、事务介绍和常见的隔离级别,传播行为 简介:讲解什么是数据库事务,常见的隔离级别和传播行为 1、介绍什么是事务,单机事务,分布式事务处理等 2、讲解场景的隔离级别 Serializable: 最严格,串行处理,消耗资源大 Repeatable Read:保证了一个事务不会修改已经由另一个事务 阅读全文
posted @ 2019-08-28 17:49 高山-景行 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 笔记 3、SpringBoot2.x整合Mybatis3.x增删改查实操和控制台打印SQL语句 讲解:SpringBoot2.x整合Mybatis3.x增删改查实操, 控制台打印sql语句 1、控制台打印sql语句 #增加打印sql语句,一般用于本地开发测试 mybatis.configuratio 阅读全文
posted @ 2019-08-28 17:33 高山-景行 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 笔记 2、SpringBoot2.x整合Mybatis3.x注解实战 简介:SpringBoot2.x整合Mybatis3.x注解配置实战 1、使用starter, maven仓库地址:http://mvnrepository.com/artifact/org.mybatis.spring.boot 阅读全文
posted @ 2019-08-28 17:04 高山-景行 阅读(237) 评论(0) 推荐(0) 编辑
摘要: 笔记 1、SpringBoot2.x持久化数据方式介绍 简介:介绍近几年常用的访问数据库的方式和优缺点 1、原始java访问数据库 开发流程麻烦 1、注册驱动/加载驱动 Class.forName("com.mysql.jdbc.Driver") 2、建立连接 Connection con = Dr 阅读全文
posted @ 2019-08-28 08:02 高山-景行 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 笔记 4、SpringBoot2.x整合模板引擎thymeleaf实战 讲解:SpringBoot2.x整合模板引擎thymeleaf实战 官网地址:https://www.thymeleaf.org/doc/articles/thymeleaf3migration.html 1、thymeleaf 阅读全文
posted @ 2019-08-28 07:57 高山-景行 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 笔记 3、SpringBoot2.x整合模板引擎freemarker实战 简介:SpringBoot2.x整合模板引擎freemarker实战 1、Freemarker相关maven依赖 <!-- 引入freemarker模板引擎的依赖 --> <dependency> <groupId>org.s 阅读全文
posted @ 2019-08-28 07:38 高山-景行 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 笔记 2、SpringBoot2.x常见模板引擎讲解和官方推荐使用 简介:介绍常用的SpringBoot2.x模板引擎和官方推荐案例 1、JSP(后端渲染,消耗性能) Java Server Pages 动态网页技术,由应用服务器中的JSP引擎来编译和执行,再将生成的整个页面返回给客户端 可以写ja 阅读全文
posted @ 2019-08-28 07:20 高山-景行 阅读(189) 评论(0) 推荐(0) 编辑