Java知识体系总结【持续更新】


以下文章,仅为个人理解的总结,如有错漏,欢迎指正!


基础篇


数据库

Redis
序号内容链接地址
1Redis-简单介绍及基本数据类型【随笔一】https://blog.csdn.net/qq_39668819/article/details/124879076
2Redis-事务、布隆过滤器及过期策略【随笔二】https://blog.csdn.net/qq_39668819/article/details/124879289
3Redis-持久化、缓存雪崩-穿透-击穿、分布式锁及双写一致性【随笔三】https://blog.csdn.net/qq_39668819/article/details/124879560
4Redis-主从复制、Sentinel、Cluster集群【随笔四】https://blog.csdn.net/qq_39668819/article/details/124879967
5Redis-主从复制、Sentinel、Cluster集群搭建【随笔五】https://blog.csdn.net/qq_39668819/article/details/124880274

进阶篇

设计模式
序号内容链接地址
1设计模式七大原则https://blog.csdn.net/qq_39668819/article/details/115390615
2创建型设计模式–工厂模式https://blog.csdn.net/qq_39668819/article/details/115375928
3创建型设计模式–抽象工厂模式https://blog.csdn.net/qq_39668819/article/details/115390992
4创建型设计模式–单例模式https://blog.csdn.net/qq_39668819/article/details/115396191
5创建型设计模式–建造者模式https://blog.csdn.net/qq_39668819/article/details/115396212
6创建型设计模式—原型模式https://blog.csdn.net/qq_39668819/article/details/115396227
7结构型设计模式—代理模式https://blog.csdn.net/qq_39668819/article/details/115480346
8结构型设计模式—适配器模式https://blog.csdn.net/qq_39668819/article/details/115499090
9结构型设计模式—桥接模式https://blog.csdn.net/qq_39668819/article/details/115560823
10结构型设计模式—装饰模式https://blog.csdn.net/qq_39668819/article/details/115582291
11结构型设计模式—外观模式https://blog.csdn.net/qq_39668819/article/details/115643900
12结构型设计模式—享元模式https://blog.csdn.net/qq_39668819/article/details/115680930
13结构型设计模式—组合模式https://blog.csdn.net/qq_39668819/article/details/115720713
14行为型设计模式—模板方法模式https://blog.csdn.net/qq_39668819/article/details/115774426
15行为型设计模式—策略模式https://blog.csdn.net/qq_39668819/article/details/115804292
16行为型设计模式—命令模式https://blog.csdn.net/qq_39668819/article/details/115877361
17行为型设计模式—责任链模式https://blog.csdn.net/qq_39668819/article/details/115981287
18行为型设计模式—状态模式https://blog.csdn.net/qq_39668819/article/details/116077215
19行为型设计模式—观察者模式https://blog.csdn.net/qq_39668819/article/details/116141223
20行为型设计模式—中介者模式https://blog.csdn.net/qq_39668819/article/details/116177694
21行为型设计模式—迭代器模式https://blog.csdn.net/qq_39668819/article/details/116213033
22行为型设计模式—访问者模式https://blog.csdn.net/qq_39668819/article/details/116246907
23行为型设计模式—备忘录模式https://blog.csdn.net/qq_39668819/article/details/116333844
24行为型设计模式—解释器模式https://blog.csdn.net/qq_39668819/article/details/116379466
并发编程
序号内容链接地址
1并发编程入门-【 多线程 】https://blog.csdn.net/qq_39668819/article/details/111564969
2发编程入门—JUC - 上【随笔】https://blog.csdn.net/qq_39668819/article/details/112184996
3并发编程入门—JUC - 下【随笔】https://blog.csdn.net/qq_39668819/article/details/112186948
4并发编程的艺术–Java中的锁(上)【随笔】https://blog.csdn.net/qq_39668819/article/details/112347511
5并发编程的艺术–Java中的锁(下)【随笔】https://blog.csdn.net/qq_39668819/article/details/112348000
Spring Boot
序号内容链接地址
1Spring Boot 入门-【 入门介绍 】https://blog.csdn.net/qq_39668819/article/details/106926290
2Spring Boot 入门-【 配置文件 】https://blog.csdn.net/qq_39668819/article/details/106926356
3Spring Boot 入门-【 日志 】https://blog.csdn.net/qq_39668819/article/details/106926705
4Spring Boot 入门-【 静态资源的映射规则 】https://blog.csdn.net/qq_39668819/article/details/106927444
5Spring Boot 入门-【 模板引擎Thymeleaf 】https://blog.csdn.net/qq_39668819/article/details/106927536
6Spring Boot 入门-【 SpringMVC自动配置 】https://blog.csdn.net/qq_39668819/article/details/106928219
7Spring Boot 入门-【 SpringBoot 错误处理机制 】https://blog.csdn.net/qq_39668819/article/details/106928579
8Spring Boot 入门-【 SpringBoot 配置嵌入式Servlet容器 】https://blog.csdn.net/qq_39668819/article/details/106928734
9Spring Boot 入门-【 SpringBoot 使用外置的Servlet容器 】https://blog.csdn.net/qq_39668819/article/details/106947030
10Spring Boot 入门-【 Spring Boot启动配置原理 】https://blog.csdn.net/qq_39668819/article/details/107089421
11Spring Boot 入门-【 自定义starter 】https://blog.csdn.net/qq_39668819/article/details/107091274
Spring Boot 扩展
序号内容链接地址
1Spring Boot 扩展-【 MyBatis Plus简单配置与使用 】https://blog.csdn.net/qq_39668819/article/details/107110695
2Spring Boot 扩展-【 集成Swagger2 】https://blog.csdn.net/qq_39668819/article/details/107287891

微服务篇

Spring Cloud
序号内容链接地址
1Spring Cloud 入门 — Eureka 服务注册中心【Hoxton.SR8-随笔】https://blog.csdn.net/qq_39668819/article/details/109341179
2Spring Cloud 入门 — ZooKeeper 服务注册中心【Hoxton.SR8-随笔】https://blog.csdn.net/qq_39668819/article/details/109364194
3Spring Cloud 入门 ---- Consul 服务注册中心【Hoxton.SR8-随笔】https://blog.csdn.net/qq_39668819/article/details/109376943
4Spring Cloud 入门 ---- Ribbon 负载均衡组件【Hoxton.SR8-随笔】https://blog.csdn.net/qq_39668819/article/details/109468171
5Spring Cloud 入门 ---- OpenFeign 服务调用【Hoxton.SR8-随笔】https://blog.csdn.net/qq_39668819/article/details/109485862
6Spring Cloud 入门 ---- Hystrix 断路器【Hoxton.SR8-随笔】https://blog.csdn.net/qq_39668819/article/details/109551711
7Spring Cloud 入门 ---- Gateway 路由网关【Hoxton.SR8-随笔】https://blog.csdn.net/qq_39668819/article/details/109612465
8Spring Cloud 入门 ---- Zuul 路由网关【Hoxton.SR8-随笔】https://blog.csdn.net/qq_39668819/article/details/109745422
9Spring Cloud 入门 ---- Config 配置中心【Hoxton.SR8-随笔】https://blog.csdn.net/qq_39668819/article/details/109640945
10Spring Cloud 入门 ---- Bus 消息总线【Hoxton.SR8-随笔】https://blog.csdn.net/qq_39668819/article/details/109685611
11Spring Cloud 入门 ---- Stream 消息驱动【Hoxton.SR8-随笔】https://blog.csdn.net/qq_39668819/article/details/109724542
12Spring Cloud 入门 ---- Sleuth 链路跟踪【Hoxton.SR8-随笔】https://blog.csdn.net/qq_39668819/article/details/109725002
13Spring Cloud 入门 ---- Admin 监控中心【Hoxton.SR8-随笔】https://blog.csdn.net/qq_39668819/article/details/109988901
14Spring Cloud 入门 ---- Security 权限管理【Hoxton.SR8-随笔】https://blog.csdn.net/qq_39668819/article/details/110704489
15Spring Cloud 入门 ---- Security Oauth2 认证授权【Hoxton.SR8-随笔】https://blog.csdn.net/qq_39668819/article/details/110704640
16Spring Cloud 入门 ---- OAuth2 分布式认证授权【Hoxton.SR8-随笔】https://blog.csdn.net/qq_39668819/article/details/110727430
Spring Cloud Alibaba
序号内容链接地址
1Spring Cloud Alibaba 入门-【 Nacos–分布式注册-配置中心 】https://blog.csdn.net/qq_39668819/article/details/109143448
2Spring Cloud Alibaba 入门-【 Sentinel 实现熔断与限流 】https://blog.csdn.net/qq_39668819/article/details/109215156
3Spring Cloud Alibaba 入门-【 Seata–分布式事务处理 】https://blog.csdn.net/qq_39668819/article/details/109116763
Dubbo
序号内容链接地址
1Dubbo 入门-【 SpringBoot 整合 Dubbo 】https://blog.csdn.net/qq_39668819/article/details/108717862

中间件篇

序号内容链接地址
1消息中间件-【 RabbitMQ 使用随笔 】https://blog.csdn.net/qq_39668819/article/details/107391505
2消息中间件-【 EMQTT 使用随笔 】https://blog.csdn.net/qq_39668819/article/details/101313330
3消息中间件-【 EMQTT SSL双向认证 】https://blog.csdn.net/qq_39668819/article/details/102979223

运维篇

序号内容链接地址
1Linux命令使用随笔https://blog.csdn.net/qq_39668819/article/details/106230873
2Docker的安装与简单使用【Linux】https://blog.csdn.net/qq_39668819/article/details/107060885
3Tengine的使用与简单配置【Linux】https://blog.csdn.net/qq_39668819/article/details/104788277
4Linux环境下安装MySql【Linux】https://blog.csdn.net/qq_39668819/article/details/105695181
5Redis的安装与简单配置【Linux】https://blog.csdn.net/qq_39668819/article/details/105492887

第三方服务的使用

阿里云
序号内容链接地址
1阿里云 IOT 物联网平台简单使用【随笔】https://blog.csdn.net/qq_39668819/article/details/109786527
2阿里云 OSS 对象存储简单使用【随笔】https://blog.csdn.net/qq_39668819/article/details/109805203
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值