摘要: 1.学习计划 数据结构在线演示http://www.cs.usfca.edu/~galles/visualization/Algorithms.html 序号 基础 SQL优化 系统优化 实战 1 索引 体系结构 应用优化 MYSQL常用工具 2 视图 存储引擎 查询缓存优化 MYSQL日志 3 存 阅读全文
posted @ 2020-10-13 15:02 闲卿逸致 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 一、Spring Boot入门 1.1 环境约束 1.1.1 工具版本: jdk1.8 maven3.x springboot 1.5.9.RELEASE 1.1.2 统一环境: 1.1.2.1 maven <profiles> <id>jdk-1.8</id> <activation> <acti 阅读全文
posted @ 2020-09-28 17:38 闲卿逸致 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 分布式技术 容器技术 jvm调优 redis kafka docker sql优化 springboot开发框架 阅读全文
posted @ 2020-09-28 16:02 闲卿逸致 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 版本及下载地址 ES 7.6.1; ES:https://mirrors.huaweicloud.com/elasticsearch/7.6.1/?C=N&O=D logstash: https://mirrors.huaweicloud.com/logstash/?C=N&O=D kibana: 阅读全文
posted @ 2020-09-27 17:30 闲卿逸致 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 1.立项报告 现状分析 架构缺陷 系统建设目标 系统优势功能分析 可行性评估 未来计划 阅读全文
posted @ 2020-09-25 14:41 闲卿逸致 阅读(78) 评论(0) 推荐(0) 编辑
摘要: Spring 3.1 开始 官方文档:https://docs.spring.io/spring-framework/docs/5.1.18.RELEASE/spring-framework-reference/integration.html#cache Cache & CacheManager 阅读全文
posted @ 2020-09-24 12:58 闲卿逸致 阅读(197) 评论(0) 推荐(0) 编辑
摘要: Redisson 1.引入redission 作为分布式锁框架 https://github.com/redisson/redisson/wiki/2.-%E9%85%8D%E7%BD%AE%E6%96%B9%E6%B3%95 (中文配置文档地址) <!-- https://mvnrepositor 阅读全文
posted @ 2020-09-23 08:39 闲卿逸致 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 页面修改不重启服务器实时更新 1.引入spring-boot-devtools,optional设置为true才生效 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</ 阅读全文
posted @ 2020-09-18 13:47 闲卿逸致 阅读(512) 评论(0) 推荐(0) 编辑
摘要: 1.分布式基础概念 微服务、注册中心、配置中心、远程调用、Feign、网关 2.基础开发 SpringBoot2.0、SpringCloud、Mybatis-Plus、Vue组件化、阿里云对象存储 3.环境 Vagrant、Linux、Docker、Mysql、Redis、逆向工程&人人开源 4.开 阅读全文
posted @ 2020-09-10 20:42 闲卿逸致 阅读(272) 评论(0) 推荐(0) 编辑
摘要: let 有严格的作用域 变量名称相同只能声明一次 不存在变量提升 const 声明之后不允许被改变 结构表达式 //数组结构 let arr = [1,2,3]; let [a,b,c] = arr; //对象解构 const person = { name:"jack", age:21, lang 阅读全文
posted @ 2020-08-26 20:32 闲卿逸致 阅读(182) 评论(0) 推荐(0) 编辑