Skip to content

Commit d87289a

Browse files
committed
chore: update index page
1 parent 999ab33 commit d87289a

File tree

2 files changed

+26
-17
lines changed

2 files changed

+26
-17
lines changed

docs/.vitepress/config.mts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { defineConfig } from 'vitepress'
22

33
// https://vitepress.dev/reference/site-config
44
export default defineConfig({
5-
title: "JVM 底层原理最全知识总结",
5+
title: "jvm",
66
description: "Doocs 开源社区",
77
themeConfig: {
88
// https://vitepress.dev/reference/default-theme-config
@@ -14,7 +14,7 @@ export default defineConfig({
1414
},
1515
footer: {
1616
message: 'Released under the CC-BY-SA-4.0 license.',
17-
copyright: 'Copyright © 2018-present Doocs'
17+
copyright: `Copyright © 2018-${new Date().getFullYear()} <a href="https://github.com/doocs">Doocs</a>`
1818
},
1919
logo: '/favicon.png',
2020
docFooter: {

docs/index.md

Lines changed: 24 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
# https://vitepress.dev/reference/default-theme-home-page
32
layout: home
43

54
hero:
6-
name: "JVM 底层原理最全知识总结"
7-
tagline:
5+
name: "jvm"
6+
text: "JVM 底层原理最全知识总结"
7+
tagline: Doocs 技术社区出品
88
actions:
99
- theme: alt
1010
text: 作者主页
@@ -14,25 +14,34 @@ hero:
1414
link: /00-quickstart
1515

1616
features:
17-
- title: JVM 内存结构
17+
- title: "JVM 内存结构 🧠"
1818
details: 程序计数器、Java 虚拟机栈、本地方法栈、堆、方法区...
19-
- title: HotSpot 虚拟机对象探秘
19+
link: /01-jvm-memory-structure
20+
- title: "HotSpot 虚拟机对象探秘 🔍"
2021
details: 对象内存布局、创建过程、访问方式
21-
- title: 垃圾收集策略与算法
22+
link: /02-hotspot-jvm-object
23+
- title: "垃圾收集策略与算法 ♻️"
2224
details: 判断对象是否存活、引用种类、垃圾收集算法
23-
- title: HotSpot 垃圾收集器
25+
link: /03-gc-algorithms
26+
- title: "HotSpot 垃圾收集器 🔥"
2427
details: 新生代、老年代、G1 通用垃圾收集器
25-
- title: 内存分配与回收策略
28+
link: /04-hotspot-gc
29+
- title: "内存分配与回收策略 💡"
2630
details: 对象分配、大对象、动态对象年龄判定、空间分配担保
27-
- title: JVM 性能调优
31+
link: /05-memory-allocation-gc
32+
- title: "JVM 性能调优 🚀"
2833
details: 使用 64 位 JDK 管理大内存、使用 32 位 JVM 建立逻辑集群
29-
- title: 类文件结构
34+
link: /06-jvm-performance-tuning
35+
- title: "类文件结构 📑"
3036
details: 魔数、版本信息、常量池、访问标志、类索引、字段表、方法表...
31-
- title: 类加载的时机
37+
link: /07-class-structure
38+
- title: "类加载的时机 ⏳"
3239
details: 类的生命周期、类加载过程初始化时机、接口加载过程
33-
- title: 类加载的过程
40+
link: /08-load-class-time
41+
- title: "类加载的过程 ⚙️"
3442
details: 加载、验证、准备、解析、初始化
35-
- title: 类加载器
43+
link: /09-load-class-process
44+
- title: "类加载器 🛠️"
3645
details: 类与类加载器、双亲委派模型工作过程
37-
---
38-
46+
link: /10-class-loader
47+
---

0 commit comments

Comments
 (0)