Skip to content

Commit a9440c2

Browse files
committedFeb 26, 2023
优化meta标签
1 parent 393f434 commit a9440c2

39 files changed

+558
-31
lines changed
 

‎docs/.vuepress/config.ts

+3-3
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

+2
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

+16-1
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

+16-1
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

+1-1
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

-2
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

+16-1
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

+12-1
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

+16-1
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

+16-1
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

‎docs/campus-recruit/lack-project-experience.md

+15
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
这个问题有很多人问过我了,今天来聊聊具体解决方案。

‎docs/campus-recruit/layoffs-solution.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
sidebar: heading
3+
---
4+
15
今年确实是互联网寒冬啊!
26

37
从2022年5月中旬以来,包括腾讯、阿里巴巴、字节跳动、美团、拼多多、快手、百度、京东、网易等在内的十余家企业被爆出裁员消息。

‎docs/campus-recruit/leetcode-guide.md

+12-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
11
---
22
sidebar: heading
3+
title: LeetCode刷题经验分享
4+
category: 分享
5+
tag:
6+
- 刷题
7+
head:
8+
- - meta
9+
- name: keywords
10+
content: LeetCode刷题经验,刷题
11+
- - meta
12+
- name: description
13+
content: LeetCode刷题经验分享
314
---
415

5-
6-
716
分享几点我自己的刷题经验,看看我是如何在最短时间内搞定数据结构与算法,达到应付面试的程度的。
817

918
主要有以下3点技巧:
@@ -141,4 +150,4 @@ LeetCode上面的题目都有进行分类,建议在一个时间段只刷同一
141150

142151
**做好总结很重要**,特别是对于没思路的题目,看了其他大佬的解法之后,多思考有哪些题目也是类似解法,这种题目的关键解题步骤,把自己的理解写下来,方便自己日后查看。
143152

144-
虽然总结可能会花费你半个钟甚至更多的时间,但是不总结的话,下次你遇到这个题目,可能会花更多的时间去思考、解答。
153+
虽然总结可能会花费你半个钟甚至更多的时间,但是不总结的话,下次你遇到这个题目,可能会花更多的时间去思考、解答。

‎docs/campus-recruit/project-experience.md

+12-1
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
# 项目经验怎么回答
@@ -121,4 +132,4 @@ sidebar: heading
121132

122133

123134

124-
> 链接:https://www.nowcoder.com/discuss/150755
135+
> 链接:https://www.nowcoder.com/discuss/150755

‎docs/campus-recruit/question-ask-me.md

+16-1
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
很多时候,在面试接近尾声的时候,面试官会问应聘者一个问题:“你有什么要问我的吗?”。
@@ -116,4 +131,4 @@
116131
**工作环境篇**
117132

118133
1. 办公室布局是什么样的,是开放式/小隔间还是办公室?
119-
2. 我的新团队是否有支持/市场等团队支持?
134+
2. 我的新团队是否有支持/市场等团队支持?

‎docs/campus-recruit/resume.md

+11
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
很多同学刚开始找工作时,投出去很多简历,但是都石沉大海了,没有下文。

‎docs/campus-recruit/share/1-23-backend.md

+11
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: 非科班转码,自学java,双非转码
11+
- - meta
12+
- name: description
13+
content: 自学Java经验分享
314
---
415

516
# 双非本,非科班的自我救赎之路

‎docs/campus-recruit/share/2-no-offer.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
---
22
sidebar: heading
3+
title: 非科班,秋招还没offer,该怎么办
4+
category: 分享
5+
tag:
6+
- 校招
7+
head:
8+
- - meta
9+
- name: keywords
10+
content: 非科班转码,秋招没offer,23秋招,秋招
11+
- - meta
12+
- name: description
13+
content: 秋招经验分享
314
---
415

516
# 非科班,秋招还没offer,该怎么办

0 commit comments

Comments
 (0)
Please sign in to comment.