Skip to content

Commit 2316288

Browse files
committed
[docs fix]broken links
1 parent 0e662ff commit 2316288

11 files changed

+41
-39
lines changed

README.md

+19-19
Original file line numberDiff line numberDiff line change
@@ -324,22 +324,22 @@ JVM 这部分内容主要参考 [JVM 虚拟机规范-Java8 ](https://docs.oracle
324324

325325
### 理论&算法&协议
326326

327-
- [CAP 理论和 BASE 理论解读](./docs/distributed-system/protocol/cap-and-base-theorem.md)
328-
- [Paxos 算法解读](./docs/distributed-system/protocol/paxos-algorithm.md)
329-
- [Raft 算法解读](./docs/distributed-system/protocol/raft-algorithm.md)
330-
- [Gossip 协议详解](./docs/distributed-system/protocol/gossip-protocl.md)
327+
- [CAP 理论和 BASE 理论解读](https://javaguide.cn/distributed-system/protocol/cap-and-base-theorem.html)
328+
- [Paxos 算法解读](https://javaguide.cn/distributed-system/protocol/paxos-algorithm.html)
329+
- [Raft 算法解读](https://javaguide.cn/distributed-system/protocol/raft-algorithm.html)
330+
- [Gossip 协议详解](https://javaguide.cn/distributed-system/protocol/gossip-protocl.html)
331331

332332
### RPC
333333

334-
- [RPC 基础知识总结](./docs/distributed-system/rpc/rpc-intro.md)
335-
- [Dubbo 常见知识点&面试题总结](./docs/distributed-system/rpc/dubbo.md)
334+
- [RPC 基础知识总结](https://javaguide.cn/distributed-system/rpc/rpc-intro.html)
335+
- [Dubbo 常见知识点&面试题总结](https://javaguide.cn/distributed-system/rpc/dubbo.html)
336336

337337
### ZooKeeper
338338

339339
> 这两篇文章可能有内容重合部分,推荐都看一遍。
340340
341-
- [ZooKeeper 相关概念总结(入门)](./docs/distributed-system/distributed-process-coordination/zookeeper/zookeeper-intro.md)
342-
- [ZooKeeper 相关概念总结(进阶)](./docs/distributed-system/distributed-process-coordination/zookeeper/zookeeper-plus.md)
341+
- [ZooKeeper 相关概念总结(入门)](https://javaguide.cn/distributed-system/distributed-process-coordination/zookeeper/zookeeper-intro.html)
342+
- [ZooKeeper 相关概念总结(进阶)](https://javaguide.cn/distributed-system/distributed-process-coordination/zookeeper/zookeeper-plus.html)
343343

344344
### API 网关
345345

@@ -348,45 +348,45 @@ JVM 这部分内容主要参考 [JVM 虚拟机规范-Java8 ](https://docs.oracle
348348

349349
### 分布式 ID
350350

351-
[分布式 ID 详解](./docs/distributed-system/distributed-id.md)
351+
[分布式 ID 常见知识点&面试题总结](https://javaguide.cn/distributed-system/distributed-id.html)
352352

353353
### 分布式锁
354354

355-
[分布式锁详解](./docs/distributed-system/distributed-lock.md)
355+
[分布式锁常见知识点&面试题总结](https://javaguide.cn/distributed-system/distributed-lock.html)
356356

357357
### 分布式事务
358358

359-
[分布式事务详解](./docs/distributed-system/distributed-transaction.md)
359+
[分布式事务常见知识点&面试题总结](https://javaguide.cn/distributed-system/distributed-transaction.html)
360360

361361
### 分布式配置中心
362362

363-
[分布式配置中心详解](./docs/distributed-system/distributed-configuration-center.md)
363+
[分布式配置中心常见知识点&面试题总结](./docs/distributed-system/distributed-configuration-center.md)
364364

365365
## 高性能
366366

367367
### 数据库读写分离&分库分表
368368

369-
[数据库读写分离&分库分表详解](./docs/high-performance/read-and-write-separation-and-library-subtable.md)
369+
[数据库读写分离和分库分表常见知识点&面试题总结](./docs/high-performance/read-and-write-separation-and-library-subtable.md)
370370

371371
### 负载均衡
372372

373-
[负载均衡详解](./docs/high-performance/load-balancing.md)
373+
[负载均衡常见知识点&面试题总结](./docs/high-performance/load-balancing.md)
374374

375375
### SQL 优化
376376

377377
[常见 SQL 优化手段总结](./docs/high-performance/sql-optimization.md)
378378

379379
### CDN
380380

381-
[CDN(内容分发网络)详解](./docs/high-performance/cdn.md)
381+
[CDN(内容分发网络)常见知识点&面试题总结](./docs/high-performance/cdn.md)
382382

383383
### 消息队列
384384

385385
- [消息队列基础知识总结](./docs/high-performance/message-queue/message-queue.md)
386-
- [Disruptor 常见面试题](./docs/high-performance/message-queue/disruptor-questions.md)
387-
- [RabbitMQ 常见面试题](./docs/high-performance/message-queue/rabbitmq-questions.md)
388-
- [RocketMQ 常见面试题总结](./docs/high-performance/message-queue/rocketmq-questions.md)
389-
- [Kafka 常见问题总结](./docs/high-performance/message-queue/kafka-questions-01.md)
386+
- [Disruptor 常见知识点&面试题总结](./docs/high-performance/message-queue/disruptor-questions.md)
387+
- [RabbitMQ 常见知识点&面试题总结](./docs/high-performance/message-queue/rabbitmq-questions.md)
388+
- [RocketMQ 常见知识点&面试题总结](./docs/high-performance/message-queue/rocketmq-questions.md)
389+
- [Kafka 常见知识点&面试题总结](./docs/high-performance/message-queue/kafka-questions-01.md)
390390

391391
## 高可用
392392

docs/.vuepress/sidebar/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -490,11 +490,13 @@ export default sidebar({
490490
{
491491
text: "分布式事务",
492492
icon: "transanction",
493+
collapsible: true,
493494
children: ["distributed-transaction"],
494495
},
495496
{
496497
text: "分布式配置中心",
497498
icon: "configuration",
499+
collapsible: true,
498500
children: ["distributed-configuration-center"],
499501
},
500502
],

docs/high-performance/cdn.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: CDN(内容分发网络)详解
2+
title: CDN常见问题总结
33
category: 高性能
44
head:
55
- - meta

docs/high-performance/load-balancing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 负载均衡详解
2+
title: 负载均衡常见问题总结
33
category: 高性能
44
head:
55
- - meta

docs/high-performance/message-queue/disruptor-questions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Disruptor常见面试题总结
2+
title: Disruptor常见问题总结
33
category: 高性能
44
tag:
55
- 消息队列

docs/high-performance/message-queue/kafka-questions-01.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Kafka常见面试题总结
2+
title: Kafka常见问题总结
33
category: 高性能
44
tag:
55
- 消息队列

docs/high-performance/message-queue/rabbitmq-questions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: RabbitMQ常见面试题总结
2+
title: RabbitMQ常见问题总结
33
category: 高性能
44
tag:
55
- 消息队列

docs/high-performance/message-queue/rocketmq-questions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: RocketMQ常见面试题总结
2+
title: RocketMQ常见问题总结
33
category: 高性能
44
tag:
55
- RocketMQ

docs/high-performance/read-and-write-separation-and-library-subtable.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 读写分离和分库分表详解
2+
title: 读写分离和分库分表常见问题总结
33
category: 高性能
44
head:
55
- - meta

docs/home.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -339,45 +339,45 @@ JVM 这部分内容主要参考 [JVM 虚拟机规范-Java8](https://docs.oracle.
339339

340340
### 分布式 ID
341341

342-
[分布式 ID 详解](./distributed-system/distributed-id.md)
342+
[分布式 ID 常见知识点&面试题总结](./distributed-system/distributed-id.md)
343343

344344
### 分布式锁
345345

346-
[分布式锁详解](./distributed-system/distributed-lock.md)
346+
[分布式锁常见知识点&面试题总结](./distributed-system/distributed-lock.md)
347347

348348
### 分布式事务
349349

350-
[分布式事务详解](./distributed-system/distributed-transaction.md)
350+
[分布式事务常见知识点&面试题总结](./distributed-system/distributed-transaction.md)
351351

352352
### 分布式配置中心
353353

354-
[分布式配置中心详解](./distributed-system/distributed-configuration-center.md)
354+
[分布式配置中心常见知识点&面试题总结](./distributed-system/distributed-configuration-center.md)
355355

356356
## 高性能
357357

358358
### 数据库读写分离&分库分表
359359

360-
[数据库读写分离&分库分表详解](./high-performance/read-and-write-separation-and-library-subtable.md)
360+
[数据库读写分离和分库分表常见知识点&面试题总结](./high-performance/read-and-write-separation-and-library-subtable.md)
361361

362362
### 负载均衡
363363

364-
[负载均衡详解](./high-performance/load-balancing.md)
364+
[负载均衡常见知识点&面试题总结](./high-performance/load-balancing.md)
365365

366366
### SQL 优化
367367

368368
[常见 SQL 优化手段总结](./high-performance/sql-optimization.md)
369369

370370
### CDN
371371

372-
[CDN(内容分发网络)详解](./high-performance/cdn.md)
372+
[CDN(内容分发网络)常见知识点&面试题总结](./high-performance/cdn.md)
373373

374374
### 消息队列
375375

376376
- [消息队列基础知识总结](./high-performance/message-queue/message-queue.md)
377-
- [Disruptor 常见面试题](./high-performance/message-queue/disruptor-questions.md)
378-
- [RabbitMQ 常见面试题](./high-performance/message-queue/rabbitmq-questions.md)
379-
- [RocketMQ 常见面试题总结](./high-performance/message-queue/rocketmq-questions.md)
380-
- [Kafka 常见问题总结](./high-performance/message-queue/kafka-questions-01.md)
377+
- [Disruptor 常见知识点&面试题总结](./high-performance/message-queue/disruptor-questions.md)
378+
- [RabbitMQ 常见知识点&面试题总结](./high-performance/message-queue/rabbitmq-questions.md)
379+
- [RocketMQ 常见知识点&面试题总结](./high-performance/message-queue/rocketmq-questions.md)
380+
- [Kafka 常常见知识点&面试题总结](./high-performance/message-queue/kafka-questions-01.md)
381381

382382
## 高可用
383383

docs/readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ footer: |-
3333

3434
## 知识星球
3535

36-
对于准备面试的同学来说,强烈推荐我创建的一个纯粹的[Java 面试知识星球](../about-the-author/zhishixingqiu-two-years.md),干货非常多,学习氛围也很不错!
36+
对于准备面试的同学来说,强烈推荐我创建的一个纯粹的[Java 面试知识星球](./about-the-author/zhishixingqiu-two-years.md),干货非常多,学习氛围也很不错!
3737

3838
下面是星球提供的部分服务(点击下方图片即可获取知识星球的详细介绍):
3939

40-
[![星球服务](https://oss.javaguide.cn/xingqiu/xingqiufuwu.png)](../about-the-author/zhishixingqiu-two-years.md)
40+
[![星球服务](https://oss.javaguide.cn/xingqiu/xingqiufuwu.png)](./about-the-author/zhishixingqiu-two-years.md)
4141

4242
## 公众号
4343

0 commit comments

Comments
 (0)