1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-16 18:10:13 +08:00

[feat]文章名规范&在线阅读完善样式美化

This commit is contained in:
guide 2021-11-09 21:07:13 +08:00
parent 25b0f2bc43
commit cbfb2c5069
17 changed files with 10 additions and 12 deletions

View File

@ -35,7 +35,7 @@ module.exports = config({
items: [
{ text: "Java书单精选", icon: "book", link: "https://gitee.com/SnailClimb/awesome-cs" },
{ text: "Java学习路线", icon: "luxianchaxun", link: "https://zhuanlan.zhihu.com/p/379041500" },
{ text: "Java开源项目精选", icon: "luxianchaxun", link: "https://gitee.com/SnailClimb/awesome-java" }
{ text: "Java开源项目精选", icon: "git", link: "https://gitee.com/SnailClimb/awesome-java" }
],
},
{ text: "IDEA指南", icon: "intellijidea", link: "/idea-tutorial/", },
@ -74,7 +74,7 @@ module.exports = config({
},
{
title: "Docker",
icon: "git",
icon: "docker1",
prefix: "docker/",
collapsable: false,
children: ["docker", "docker从入门到实战"]
@ -101,7 +101,7 @@ module.exports = config({
children: [
"shortcut-key", "idea-themes", "improve-code", "interface-beautification",
"camel-case", "code-glance", "code-statistic",
"git-commit-template", "gson-format", "dea-features-trainer", "jclasslib",
"git-commit-template", "gson-format", "idea-features-trainer", "jclasslib",
"maven-helper", "rest-devlop", "save-actions", "sequence-diagram", "translation",
"others"
]
@ -123,7 +123,7 @@ module.exports = config({
{
title: "容器", prefix: "collection/",
children: [
"java集合框架基础知识&面试题总结", "java集合使用注意事项总结",
"java集合框架基础知识&面试题总结", "java集合使用注意事项",
{
title: "源码分析",
children: ["arraylist-source-code", "hashmap-source-code", "concurrent-hash-map-source-code"],
@ -142,15 +142,15 @@ module.exports = config({
},
{
title: "JVM", prefix: "jvm/",
children: ["内存区域", "jvm垃圾回收", "类文件结构", "类加载过程", "类加载器", "jvm参数指南", "[加餐]大白话带你认识jvm"],
children: ["memory-area", "jvm-garbage-collection", "class-file-structure", "class-loading-process", "classloader", "jvm-parameters-intro", "jvm-intro", "jdk-monitoring-and-troubleshooting-tools"],
},
{
title: "新特性", prefix: "new-features/",
children: ["java8-common-new-features", "java8新特性总结", "java新特性总结"],
children: ["java8-common-new-features", "java8-tutorial-translate", "java新特性总结"],
},
{
title: "小技巧", prefix: "tips/",
children: ["locate-performance-problems/手把手教你定位常见Java性能问题", "jad反编译tricks"],
children: ["locate-performance-problems/手把手教你定位常见Java性能问题", "jad"],
},
],
},
@ -166,7 +166,7 @@ module.exports = config({
{
title: "操作系统", prefix: "operating-system/", icon: "caozuoxitong",
children: [
"basis", "linux", "shell"
"操作系统常见面试题&知识点总结", "linux-intro", "shell-intro"
],
},
{
@ -202,7 +202,7 @@ module.exports = config({
},
{
title: "Redis", prefix: "redis/",
children: ["redis-all", "3-commonly-used-cache-read-and-write-strategies"],
children: ["redis知识点&面试题总结", "3-commonly-used-cache-read-and-write-strategies"],
},
],
},

View File

@ -1,2 +1,2 @@
// import icon
@import '//at.alicdn.com/t/font_2922463_xcm2s697wt.css'
@import '//at.alicdn.com/t/font_2922463_74fu8o5xg3.css'

View File

@ -5,7 +5,6 @@ tag:
- Redis
---
### 简单介绍一下 Redis 呗!
简单来说 **Redis 就是一个使用 C 语言开发的数据库**,不过与传统数据库不同的是 **Redis 的数据是存在内存中的** ,也就是它是内存数据库,所以读写速度非常快,因此 Redis 被广泛应用于缓存方向。

View File

@ -4,7 +4,6 @@ tag:
- JVM
---
# JVM 垃圾回收详解
## 写在前面