Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 43c2271

Browse filesBrowse files
committed
docs: 更新文档
1 parent 7af3679 commit 43c2271
Copy full SHA for 43c2271

File tree

Expand file treeCollapse file tree

8 files changed

+16
-10
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

8 files changed

+16
-10
lines changed
Open diff view settings
Collapse file

‎.gitattributes‎

Copy file name to clipboardExpand all lines: .gitattributes
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
*.less text
2323
*.sql text
2424
*.properties text
25+
*.md text
2526

2627
# unix style
2728
*.sh text eol=lf
Collapse file

‎.gitignore‎

Copy file name to clipboardExpand all lines: .gitignore
+7-2Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,26 +29,31 @@ hs_err_pid*
2929

3030
# maven plugin temp files
3131
.flattened-pom.xml
32-
package-lock.json
3332

3433

3534
# ------------------------------- javascript -------------------------------
3635
# dependencies
3736
node_modules
3837

3938
# temp folders
40-
.temp
39+
build
4140
dist
4241
_book
4342
_jsdoc
43+
.temp
44+
.deploy*/
4445

4546
# temp files
4647
*.log
4748
npm-debug.log*
4849
yarn-debug.log*
4950
yarn-error.log*
5051
bundle*.js
52+
.DS_Store
53+
Thumbs.db
54+
db.json
5155
book.pdf
56+
package-lock.json
5257

5358

5459
# ------------------------------- intellij -------------------------------
Collapse file

‎README.md‎

Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
</a>
1616

1717
<a href="https://github.com/dunwu/java-tutorial/commits/master">
18-
<img alt="commit" class="no-zoom" src="https://img.shields.io/github/workflow/status/dunwu/java-tutorial/CI?style=for-the-badge">
18+
<img alt="build" class="no-zoom" src="https://img.shields.io/github/actions/workflow/status/dunwu/java-tutorial/deploy.yml?style=for-the-badge">
1919
</a>
2020

2121
<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/deed.zh">
@@ -183,7 +183,7 @@
183183
>
184184
> 消息队列主要解决应用耦合,异步消息,流量削锋等问题,实现高性能,高可用,可伸缩和最终一致性架构。是大型分布式系统不可缺少的中间件。
185185
>
186-
> 如果想深入学习各种消息队列产品,建议先了解一下 [消息队列基本原理](https://github.com/dunwu/blog/blob/master/source/_posts/theory/mq.md) ,有助于理解消息队列特性的实现和设计思路。
186+
> 如果想深入学习各种消息队列产品,建议先了解一下 [消息队列基本原理](https://dunwu.github.io/blog/pages/1fd240/) ,有助于理解消息队列特性的实现和设计思路。
187187
188188
- [消息队列面试](docs/14.中间件/01.MQ/01.消息队列面试.md)
189189
- [消息队列基本原理](docs/14.中间件/01.MQ/02.消息队列基本原理.md)
Collapse file

‎docs/12.工具/01.IO/02.二进制序列化.md‎

Copy file name to clipboardExpand all lines: docs/12.工具/01.IO/02.二进制序列化.md
+1-1Lines changed: 1 addition & 1 deletion
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ permalink: /pages/95f25b/
2323

2424
原因很简单,就是 Java 默认的序列化机制(`ObjectInputStream``ObjectOutputStream`)具有很多缺点。
2525

26-
> 不了解 Java 默认的序列化机制,可以参考:[Java 序列化](https://github.com/dunwu/javacore/blob/master/docs/io/Java序列化.md)
26+
> 不了解 Java 默认的序列化机制,可以参考:[Java 序列化](https://dunwu.github.io/blog/pages/2b2f0f/)
2727
2828
Java 自身的序列化方式具有以下缺点:
2929

Collapse file

‎docs/12.工具/01.IO/README.md‎

Copy file name to clipboardExpand all lines: docs/12.工具/01.IO/README.md
+1-1Lines changed: 1 addition & 1 deletion
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ permalink: /pages/0358e9/
1717

1818
# Java 序列化工具
1919

20-
Java 官方的序列化存在许多问题,因此,很多人更愿意使用优秀的第三方序列化工具来替代 Java 自身的序列化机制。 如果想详细了解 Java 自身序列化方式,可以参考:[深入理解 Java 序列化](https://github.com/dunwu/javacore/blob/master/docs/io/java-serialization.md)
20+
Java 官方的序列化存在许多问题,因此,很多人更愿意使用优秀的第三方序列化工具来替代 Java 自身的序列化机制。 如果想详细了解 Java 自身序列化方式,可以参考:[Java 序列化](https://dunwu.github.io/blog/pages/2b2f0f/)
2121

2222
序列化库技术选型:
2323

Collapse file

‎docs/14.中间件/01.MQ/README.md‎

Copy file name to clipboardExpand all lines: docs/14.中间件/01.MQ/README.md
+1-1Lines changed: 1 addition & 1 deletion
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ permalink: /pages/fc0b29/
2121
>
2222
> 消息队列主要解决应用耦合,异步消息,流量削锋等问题,实现高性能,高可用,可伸缩和最终一致性架构。是大型分布式系统不可缺少的中间件。
2323
>
24-
> 如果想深入学习各种消息队列产品,建议先了解一下 [消息队列基本原理](https://github.com/dunwu/blog/blob/master/source/_posts/theory/mq.md) ,有助于理解消息队列特性的实现和设计思路。
24+
> 如果想深入学习各种消息队列产品,建议先了解一下 [消息队列基本原理](https://dunwu.github.io/blog/pages/1fd240/) ,有助于理解消息队列特性的实现和设计思路。
2525
2626
## 内容
2727

Collapse file

‎docs/14.中间件/README.md‎

Copy file name to clipboardExpand all lines: docs/14.中间件/README.md
+1-1Lines changed: 1 addition & 1 deletion
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ permalink: /pages/3cbcff/
2323
>
2424
> 消息队列主要解决应用耦合,异步消息,流量削锋等问题,实现高性能,高可用,可伸缩和最终一致性架构。是大型分布式系统不可缺少的中间件。
2525
>
26-
> 如果想深入学习各种消息队列产品,建议先了解一下 [消息队列基本原理](https://github.com/dunwu/blog/blob/master/source/_posts/theory/mq.md) ,有助于理解消息队列特性的实现和设计思路。
26+
> 如果想深入学习各种消息队列产品,建议先了解一下 [消息队列基本原理](https://dunwu.github.io/blog/pages/1fd240/) ,有助于理解消息队列特性的实现和设计思路。
2727
2828
- [消息队列面试](01.MQ/01.消息队列面试.md)
2929
- [消息队列基本原理](01.MQ/02.消息队列基本原理.md)
Collapse file

‎docs/README.md‎

Copy file name to clipboardExpand all lines: docs/README.md
+2-2Lines changed: 2 additions & 2 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ footer: CC-BY-SA-4.0 Licensed | Copyright © 2018-Now Dunwu
1919
</a>
2020

2121
<a href="https://github.com/dunwu/java-tutorial/commits/master">
22-
<img alt="commit" class="no-zoom" src="https://img.shields.io/github/workflow/status/dunwu/java-tutorial/CI?style=for-the-badge">
22+
<img alt="build" class="no-zoom" src="https://img.shields.io/github/actions/workflow/status/dunwu/java-tutorial/deploy.yml?style=for-the-badge">
2323
</a>
2424

2525
<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/deed.zh">
@@ -185,7 +185,7 @@ footer: CC-BY-SA-4.0 Licensed | Copyright © 2018-Now Dunwu
185185
>
186186
> 消息队列主要解决应用耦合,异步消息,流量削锋等问题,实现高性能,高可用,可伸缩和最终一致性架构。是大型分布式系统不可缺少的中间件。
187187
>
188-
> 如果想深入学习各种消息队列产品,建议先了解一下 [消息队列基本原理](https://github.com/dunwu/blog/blob/master/source/_posts/theory/mq.md) ,有助于理解消息队列特性的实现和设计思路。
188+
> 如果想深入学习各种消息队列产品,建议先了解一下 [消息队列基本原理](https://dunwu.github.io/blog/pages/1fd240/) ,有助于理解消息队列特性的实现和设计思路。
189189
190190
- [消息队列面试](14.中间件/01.MQ/01.消息队列面试.md)
191191
- [消息队列基本原理](14.中间件/01.MQ/02.消息队列基本原理.md)

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.