Skip to content

Commit a9440c2

Browse files
committed
优化meta标签
1 parent 393f434 commit a9440c2

39 files changed

+558
-31
lines changed

docs/.vuepress/config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import { gitPlugin } from '@vuepress/plugin-git'
88

99
export default defineUserConfig({
1010
lang: "zh-CN",
11-
title: "程序员大彬",
12-
description: "自学转码之路",
11+
title: "Java学习&面试指南-程序员大彬",
12+
description: "Java学习、面试指南,涵盖大部分 Java 程序员所需要掌握的核心知识",
1313
base: "/",
1414
dest: './public',
1515
theme,
@@ -31,7 +31,7 @@ export default defineUserConfig({
3131
["meta", { "http-equiv": "Expires", content: "0" }],
3232
['meta', {name: 'baidu-site-verification', content: 'code-mtJaPDeFwy'}],
3333
// ['meta', { name: 'google-site-verification', content: 'eGgkbT6uJR-WQeSkhhcB6RbnZ2RtF5poPf1ai-Fgmy8' }],
34-
['meta', {name: 'keywords', content: 'Java, Spring, Mybatis, SpringMVC, Springboot, 编程, 程序员, MySQL, Redis, 系统设计, 分布式, RPC, 高可用, 高并发'}],
34+
['meta', {name: 'keywords', content: 'Java,Spring,Mybatis,SpringMVC,Springboot,编程,程序员,MySQL,Redis,系统设计,分布式,RPC,高可用,高并发,场景设计,Java面试'}],
3535
[
3636
'script', {}, `
3737
var _hmt = _hmt || [];

docs/.vuepress/theme.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ export default hopeTheme({
3333
collapsable: true,
3434

3535
displayFooter: true,
36+
prevLink: true,
37+
nextLink: true,
3638

3739
// footer: '<a href="http://beian.miit.gov.cn/" rel="noopener noreferrer" target="_blank">粤ICP备2022005190号-2 |</a>' +
3840
// '<a href="/other/site-diary.html">关于网站</a>',

docs/advance/concurrent/1-current-limiting.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
---
2+
sidebar: heading
3+
title: 限流算法介绍
4+
category: 实践经验
5+
tag:
6+
- 并发
7+
head:
8+
- - meta
9+
- name: keywords
10+
content: 限流算法,令牌桶算法,漏桶算法,时间窗口算法,队列法
11+
- - meta
12+
- name: description
13+
content: Java常见面试题总结,让天下没有难背的八股文!
14+
---
15+
116
# 限流算法
217

318
大多数情况下,我们不需要自己实现一个限流系统,但限流在实际应用中是一个非常微妙、有很多细节的系统保护手段,尤其是在高流量时,了解你所使用的限流系统的限流算法,将能很好地帮助你充分利用该限流系统达到自己的商业需求和目的,并规避一些使用限流系统可能带来的大大小小的问题。
@@ -136,4 +151,4 @@
136151

137152

138153

139-
> 本文摘录自《深入浅出大型网站架构设计》
154+
> 本文摘录自《深入浅出大型网站架构设计》

docs/advance/concurrent/2-load-balance.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
---
2+
sidebar: heading
3+
title: 高可用——负载均衡
4+
category: 实践经验
5+
tag:
6+
- 并发
7+
head:
8+
- - meta
9+
- name: keywords
10+
content: 高可用,负载均衡
11+
- - meta
12+
- name: description
13+
content: Java常见面试题总结,让天下没有难背的八股文!
14+
---
15+
116
# 高可用——负载均衡
217

318
## **一、 什么是负载均衡?**
@@ -161,4 +176,4 @@ Dubbo内置了4种负载均衡策略:
161176
- 第 1 层:客户端层 -> 反向代理层 的负载均衡。通过 DNS 轮询
162177
- 第 2 层:反向代理层 -> Web 层 的负载均衡。通过 Nginx 的负载均衡模块
163178
- 第 3 层:Web 层 -> 业务服务层 的负载均衡。通过服务治理框架的负载均衡模块
164-
- 第 4 层:业务服务层 -> 数据存储层 的负载均衡。通过数据的水平分布,数据均匀了,理论上请求也会均匀。比如通过买家ID分片类似
179+
- 第 4 层:业务服务层 -> 数据存储层 的负载均衡。通过数据的水平分布,数据均匀了,理论上请求也会均匀。比如通过买家ID分片类似

docs/advance/excellent-article/2-spring-transaction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
sidebar: heading
3-
title: @Transactional 事务注解详解
3+
title: Transactional事务注解详解
44
category: 优质文章
55
tag:
66
- Spring

docs/advance/system-design/1-scan-code-login.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ head:
1313
content: 场景设计常见面试题总结,让天下没有难背的八股文!
1414
---
1515

16-
> 回复【**手册**】获取大彬精心整理的**大厂面试手册**
17-
1816
## 扫码登录原理
1917

2018
今天给大家介绍下扫码登录功能是怎么设计的。

docs/campus-recruit/biggest-difficulty.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
---
2+
sidebar: heading
3+
title: 你在项目里遇到的最大困难是什么,如何解决的?
4+
category: 分享
5+
tag:
6+
- 面试题
7+
head:
8+
- - meta
9+
- name: keywords
10+
content: 项目里遇到的最大困难是什么
11+
- - meta
12+
- name: description
13+
content: 你在项目里遇到的最大困难是什么,如何解决的?
14+
---
15+
116
## 你在项目里遇到的最大困难是什么,如何解决的?
217

318
这是一道面试高频题,但是很多人都没能回答好,或者说没有准备好怎么去回答。
@@ -21,4 +36,4 @@
2136

2237

2338

24-
最后总结一下,最重要是平时要多复盘总结,积累面试素材。不管是多小的问题,只要你认真对待,总能学到一些知识。大部分面试官也不会期待你有处理过多大的问题,毕竟大部分人都是普通人。只要能从你的回答中看出你的思考,解决问题的方式,那么面试官的问这个问题的目的也就达到了。
39+
最后总结一下,最重要是平时要多复盘总结,积累面试素材。不管是多小的问题,只要你认真对待,总能学到一些知识。大部分面试官也不会期待你有处理过多大的问题,毕竟大部分人都是普通人。只要能从你的回答中看出你的思考,解决问题的方式,那么面试官的问这个问题的目的也就达到了。

docs/campus-recruit/career-plan.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
---
22
sidebar: heading
3+
title: 程序员职业规划分享
4+
category: 分享
5+
tag:
6+
- 面试题
7+
head:
8+
- - meta
9+
- name: keywords
10+
content: 职业规划
11+
- - meta
12+
- name: description
13+
content: 面试高频题,职业规划
314
---
415

516
分享一下我的看法。
@@ -34,4 +45,4 @@ sidebar: heading
3445

3546

3647

37-
> 参考:https://segmentfault.com/a/1190000040241465
48+
> 参考:https://segmentfault.com/a/1190000040241465

docs/campus-recruit/hr-ask-offers.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
---
2+
sidebar: heading
3+
title: HR问目前拿到哪几个offer了,怎么回答好?
4+
category: 分享
5+
tag:
6+
- 面试题
7+
head:
8+
- - meta
9+
- name: keywords
10+
content: 面试题
11+
- - meta
12+
- name: description
13+
content: HR问目前拿到哪几个offer了,怎么回答好?
14+
---
15+
116
## HR问目前拿到哪几个offer了,怎么回答好?
217

318
这是比较常见的面试问题。
@@ -40,4 +55,4 @@ HR也会根据你拿到的Offer的情况,评估你在市场上对标的位置
4055

4156

4257

43-
> 参考链接:https://www.zhihu.com/question/23751641
58+
> 参考链接:https://www.zhihu.com/question/23751641

docs/campus-recruit/interview-question-career-plan.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
---
2+
sidebar: heading
3+
title: 面试时问你的职业规划,该怎么回答?
4+
category: 分享
5+
tag:
6+
- 面试题
7+
head:
8+
- - meta
9+
- name: keywords
10+
content: 面试题,职业规划
11+
- - meta
12+
- name: description
13+
content: 面试时问你的职业规划,该怎么回答?
14+
---
15+
116
## 面试时问你的职业规划,该怎么回答?
217

318
建议紧扣工作和学习两个维度回答
@@ -30,4 +45,4 @@
3045
3146

3247

33-
参考链接:https://www.zhihu.com/question/20054953
48+
参考链接:https://www.zhihu.com/question/20054953

0 commit comments

Comments
 (0)