Skip to content

Commit

Permalink
2022年05月21日 Spring Boot 系列专栏更新
Browse files Browse the repository at this point in the history
  • Loading branch information
itwanger committed May 21, 2022
1 parent 70a878d commit 10f4d34
Show file tree
Hide file tree
Showing 92 changed files with 1,995 additions and 72 deletions.
15 changes: 11 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -277,12 +277,16 @@
- [一分钟快速搭建Spring Boot项目](docs/springboot/initializr.md)
- [Spring Boot 整合 MySQL 和 Druid](docs/springboot/mysql-druid.md)
- [Spring Boot 整合 JPA](docs/springboot/jpa.md)
- [Spring Boot 整合 Thymeleaf 模板引擎](docs/springboot/thymeleaf.md)
- [Spring Boot 如何开启事务支持?](docs/springboot/transaction.md)
- [Spring Boot 中使用过滤器、拦截器、监听器](docs/springboot/Filter-Interceptor-Listener.md)
- [Spring Boot 整合 Redis 实现缓存](docs/redis/redis-springboot.md)
- [Spring Boot 整合 MyBatis-Plus AutoGenerator 生成编程喵项目骨架代码](docs/kaiyuan/auto-generator.md)
- [Spring Boot 整合 Logback 定制日志框架](docs/springboot/logback.md)
- [Spring Boot 整合 Swagger-UI 实现在线API文档](docs/springboot/swagger.md)
- [Spring Boot 整合 Knife4j,美化强化丑陋的Swagger](docs/gongju/knife4j.md)
- [Spring Boot 整合 Spring Task 实现定时任务](docs/springboot/springtask.md)
- [Spring Boot 为什么不需要额外安装Tomcat?](docs/springboot/tomcat.md)
- [Spring Boot 整合 MyBatis-Plus AutoGenerator 生成编程喵项目骨架代码](docs/kaiyuan/auto-generator.md)


## 辅助工具/轮子

Expand All @@ -309,13 +313,14 @@

- [全文搜索引擎Elasticsearch入门教程](docs/elasticsearch/rumen.md)
- [可能是把ZooKeeper概念讲的最清楚的一篇文章](docs/zookeeper/jibenjieshao.md)
- [微服务网关:从对比到选型,由理论到实践](docs/microservice/api-wangguan.md)

## 高性能

### 消息队列

- [RabbitMQ入门教程(概念、应用场景、安装、使用)](docs/mq/rabbitmq-rumen.md)
- [MQ:怎么确保消息100%不丢失?](docs/mq/100-budiushi.md)
- [怎么确保消息100%不丢失?](docs/mq/100-budiushi.md)

## 高可用

Expand All @@ -326,10 +331,12 @@
## MySQL

- [如何保障MySQL和Redis的数据一致性?](docs/mysql/redis-shuju-yizhixing.md)

## Redis

- [Redis入门(适合新手)](docs/redis/rumen.md)
- [简单聊聊缓存雪崩、穿透、击穿](docs/redis/xuebeng-chuantou-jichuan.md)
- [聊聊缓存雪崩、穿透、击穿](docs/redis/xuebeng-chuantou-jichuan.md)



Expand Down
70 changes: 56 additions & 14 deletions docs/.vuepress/sidebar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -688,13 +688,25 @@ export const sidebarConfig = defineSidebarConfig({
text: "整合JPA",
link: "springboot/jpa",
},
{
text: "整合Thymeleaf",
link: "springboot/thymeleaf",
},
{
text: "开启事务支持",
link: "springboot/transaction",
},
{
text: "过滤器、拦截器、监听器",
link: "Filter-Interceptor-Listener",
},
{
text: "整合Redis实现缓存",
link: "redis/redis-springboot",
},
{
text: "整合MyBatis-Plus AutoGenerator",
link: "kaiyuan/auto-generator",
text: "整合Logback",
link: "springboot/logback"
},
{
text: "整合Swagger-UI",
Expand All @@ -708,7 +720,11 @@ export const sidebarConfig = defineSidebarConfig({
text: "整合SpringTask",
link: "springboot/springtask"
},
"springboot/tomcat",
{
text: "整合MyBatis-Plus AutoGenerator",
link: "kaiyuan/auto-generator",
},

],
},
{
Expand Down Expand Up @@ -736,21 +752,31 @@ export const sidebarConfig = defineSidebarConfig({
text: "3.6 分布式",
collapsable: true,
children: [
"elasticsearch/rumen",
"zookeeper/jibenjieshao",
{
text: "Elasticsearch入门",
link: "elasticsearch/rumen"
},
{
text: "聊聊ZooKeeper",
link: "zookeeper/jibenjieshao"
},
{
text: "聊聊微服务网关",
link: "microservice/api-wangguan"
},
],
},
{
text: "3.7 高性能",
text: "3.7 消息队列",
collapsable: true,
children: [
{
text: "消息队列",
collapsable: true,
children: [
"mq/rabbitmq-rumen",
"mq/100-budiushi",
],
text: "RabbitMQ入门",
link: "mq/rabbitmq-rumen"
},
{
text: "如何保障消息不丢失",
link: "mq/100-budiushi"
},
],
},
Expand All @@ -760,12 +786,28 @@ export const sidebarConfig = defineSidebarConfig({
text: "四、数据库",
collapsable: true,
children: [
{
text: "MySQL",
collapsable: true,
children: [
{
text: "MySQL和Redis数据一致性",
link: "mysql/redis-shuju-yizhixing"
},
],
},
{
text: "Redis",
collapsable: true,
children: [
"redis/rumen",
"redis/xuebeng-chuantou-jichuan",
{
text: "Redis入门",
link: "redis/rumen"
},
{
text: "缓存雪崩、穿透、击穿",
link: "redis/xuebeng-chuantou-jichuan"
},
],
},
{
Expand Down
12 changes: 9 additions & 3 deletions docs/home.md
Original file line number Diff line number Diff line change
Expand Up @@ -275,12 +275,15 @@ headerDepth: 1
- [一分钟快速搭建Spring Boot项目](springboot/initializr.md)
- [Spring Boot 整合 MySQL 和 Druid](springboot/mysql-druid.md)
- [Spring Boot 整合 JPA](springboot/jpa.md)
- [Spring Boot 整合 Thymeleaf 模板引擎](springboot/thymeleaf.md)
- [Spring Boot 如何开启事务支持?](springboot/transaction.md)
- [Spring Boot 中使用过滤器、拦截器、监听器](springboot/Filter-Interceptor-Listener.md)
- [Spring Boot 整合 Redis 实现缓存](redis/redis-springboot.md)
- [Spring Boot 整合 MyBatis-Plus AutoGenerator生成项目骨架代码](kaiyuan/auto-generator.md)
- [Spring Boot 整合 Logback 定制日志框架](springboot/logback.md)
- [Spring Boot 整合 Swagger-UI 实现在线API文档](springboot/swagger.md)
- [Spring Boot 整合 Knife4j,美化强化丑陋的Swagger](gongju/knife4j.md)
- [Spring Boot 整合 Spring Task 实现定时任务](springboot/springtask.md)
- [Spring Boot 为什么不需要额外安装Tomcat?](springboot/tomcat.md)
- [Spring Boot 整合 MyBatis-Plus AutoGenerator 生成编程喵项目骨架代码](kaiyuan/auto-generator.md)

## 辅助工具/轮子

Expand All @@ -307,6 +310,7 @@ headerDepth: 1

- [全文搜索引擎Elasticsearch入门教程](elasticsearch/rumen.md)
- [可能是把ZooKeeper概念讲的最清楚的一篇文章](zookeeper/jibenjieshao.md)
- [微服务网关:从对比到选型,由理论到实践](microservice/api-wangguan.md)

### 高性能

Expand All @@ -325,10 +329,12 @@ headerDepth: 1

### MySQL

- [如何保障MySQL和Redis的数据一致性?](mysql/redis-shuju-yizhixing.md)

### Redis

- [Redis入门(适合新手)](redis/rumen.md)
- [简单聊聊缓存雪崩、穿透、击穿](redis/xuebeng-chuantou-jichuan.md)
- [聊聊缓存雪崩、穿透、击穿](redis/xuebeng-chuantou-jichuan.md)



Expand Down
Loading

0 comments on commit 10f4d34

Please sign in to comment.