Skip to content

Commit 10f4d34

Browse files
committed
2022年05月21日 Spring Boot 系列专栏更新
1 parent 70a878d commit 10f4d34

File tree

92 files changed

+1995
-72
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+1995
-72
lines changed

README.md

+11-4
Original file line numberDiff line numberDiff line change
@@ -277,12 +277,16 @@
277277
- [一分钟快速搭建Spring Boot项目](docs/springboot/initializr.md)
278278
- [Spring Boot 整合 MySQL 和 Druid](docs/springboot/mysql-druid.md)
279279
- [Spring Boot 整合 JPA](docs/springboot/jpa.md)
280+
- [Spring Boot 整合 Thymeleaf 模板引擎](docs/springboot/thymeleaf.md)
281+
- [Spring Boot 如何开启事务支持?](docs/springboot/transaction.md)
282+
- [Spring Boot 中使用过滤器、拦截器、监听器](docs/springboot/Filter-Interceptor-Listener.md)
280283
- [Spring Boot 整合 Redis 实现缓存](docs/redis/redis-springboot.md)
281-
- [Spring Boot 整合 MyBatis-Plus AutoGenerator 生成编程喵项目骨架代码](docs/kaiyuan/auto-generator.md)
284+
- [Spring Boot 整合 Logback 定制日志框架](docs/springboot/logback.md)
282285
- [Spring Boot 整合 Swagger-UI 实现在线API文档](docs/springboot/swagger.md)
283286
- [Spring Boot 整合 Knife4j,美化强化丑陋的Swagger](docs/gongju/knife4j.md)
284287
- [Spring Boot 整合 Spring Task 实现定时任务](docs/springboot/springtask.md)
285-
- [Spring Boot 为什么不需要额外安装Tomcat?](docs/springboot/tomcat.md)
288+
- [Spring Boot 整合 MyBatis-Plus AutoGenerator 生成编程喵项目骨架代码](docs/kaiyuan/auto-generator.md)
289+
286290

287291
## 辅助工具/轮子
288292

@@ -309,13 +313,14 @@
309313

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

313318
## 高性能
314319

315320
### 消息队列
316321

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

320325
## 高可用
321326

@@ -326,10 +331,12 @@
326331
327332
## MySQL
328333

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

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

334341

335342

docs/.vuepress/sidebar.ts

+56-14
Original file line numberDiff line numberDiff line change
@@ -688,13 +688,25 @@ export const sidebarConfig = defineSidebarConfig({
688688
text: "整合JPA",
689689
link: "springboot/jpa",
690690
},
691+
{
692+
text: "整合Thymeleaf",
693+
link: "springboot/thymeleaf",
694+
},
695+
{
696+
text: "开启事务支持",
697+
link: "springboot/transaction",
698+
},
699+
{
700+
text: "过滤器、拦截器、监听器",
701+
link: "Filter-Interceptor-Listener",
702+
},
691703
{
692704
text: "整合Redis实现缓存",
693705
link: "redis/redis-springboot",
694706
},
695707
{
696-
text: "整合MyBatis-Plus AutoGenerator",
697-
link: "kaiyuan/auto-generator",
708+
text: "整合Logback",
709+
link: "springboot/logback"
698710
},
699711
{
700712
text: "整合Swagger-UI",
@@ -708,7 +720,11 @@ export const sidebarConfig = defineSidebarConfig({
708720
text: "整合SpringTask",
709721
link: "springboot/springtask"
710722
},
711-
"springboot/tomcat",
723+
{
724+
text: "整合MyBatis-Plus AutoGenerator",
725+
link: "kaiyuan/auto-generator",
726+
},
727+
712728
],
713729
},
714730
{
@@ -736,21 +752,31 @@ export const sidebarConfig = defineSidebarConfig({
736752
text: "3.6 分布式",
737753
collapsable: true,
738754
children: [
739-
"elasticsearch/rumen",
740-
"zookeeper/jibenjieshao",
755+
{
756+
text: "Elasticsearch入门",
757+
link: "elasticsearch/rumen"
758+
},
759+
{
760+
text: "聊聊ZooKeeper",
761+
link: "zookeeper/jibenjieshao"
762+
},
763+
{
764+
text: "聊聊微服务网关",
765+
link: "microservice/api-wangguan"
766+
},
741767
],
742768
},
743769
{
744-
text: "3.7 高性能",
770+
text: "3.7 消息队列",
745771
collapsable: true,
746772
children: [
747773
{
748-
text: "消息队列",
749-
collapsable: true,
750-
children: [
751-
"mq/rabbitmq-rumen",
752-
"mq/100-budiushi",
753-
],
774+
text: "RabbitMQ入门",
775+
link: "mq/rabbitmq-rumen"
776+
},
777+
{
778+
text: "如何保障消息不丢失",
779+
link: "mq/100-budiushi"
754780
},
755781
],
756782
},
@@ -760,12 +786,28 @@ export const sidebarConfig = defineSidebarConfig({
760786
text: "四、数据库",
761787
collapsable: true,
762788
children: [
789+
{
790+
text: "MySQL",
791+
collapsable: true,
792+
children: [
793+
{
794+
text: "MySQL和Redis数据一致性",
795+
link: "mysql/redis-shuju-yizhixing"
796+
},
797+
],
798+
},
763799
{
764800
text: "Redis",
765801
collapsable: true,
766802
children: [
767-
"redis/rumen",
768-
"redis/xuebeng-chuantou-jichuan",
803+
{
804+
text: "Redis入门",
805+
link: "redis/rumen"
806+
},
807+
{
808+
text: "缓存雪崩、穿透、击穿",
809+
link: "redis/xuebeng-chuantou-jichuan"
810+
},
769811
],
770812
},
771813
{

docs/home.md

+9-3
Original file line numberDiff line numberDiff line change
@@ -275,12 +275,15 @@ headerDepth: 1
275275
- [一分钟快速搭建Spring Boot项目](springboot/initializr.md)
276276
- [Spring Boot 整合 MySQL 和 Druid](springboot/mysql-druid.md)
277277
- [Spring Boot 整合 JPA](springboot/jpa.md)
278+
- [Spring Boot 整合 Thymeleaf 模板引擎](springboot/thymeleaf.md)
279+
- [Spring Boot 如何开启事务支持?](springboot/transaction.md)
280+
- [Spring Boot 中使用过滤器、拦截器、监听器](springboot/Filter-Interceptor-Listener.md)
278281
- [Spring Boot 整合 Redis 实现缓存](redis/redis-springboot.md)
279-
- [Spring Boot 整合 MyBatis-Plus AutoGenerator生成项目骨架代码](kaiyuan/auto-generator.md)
282+
- [Spring Boot 整合 Logback 定制日志框架](springboot/logback.md)
280283
- [Spring Boot 整合 Swagger-UI 实现在线API文档](springboot/swagger.md)
281284
- [Spring Boot 整合 Knife4j,美化强化丑陋的Swagger](gongju/knife4j.md)
282285
- [Spring Boot 整合 Spring Task 实现定时任务](springboot/springtask.md)
283-
- [Spring Boot 为什么不需要额外安装Tomcat?](springboot/tomcat.md)
286+
- [Spring Boot 整合 MyBatis-Plus AutoGenerator 生成编程喵项目骨架代码](kaiyuan/auto-generator.md)
284287

285288
## 辅助工具/轮子
286289

@@ -307,6 +310,7 @@ headerDepth: 1
307310

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

311315
### 高性能
312316

@@ -325,10 +329,12 @@ headerDepth: 1
325329

326330
### MySQL
327331

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

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

333339

334340

0 commit comments

Comments
 (0)