Skip to content

Commit

Permalink
构造
Browse files Browse the repository at this point in the history
  • Loading branch information
oddfar committed Aug 3, 2021
1 parent 41c212b commit c6fd947
Show file tree
Hide file tree
Showing 38 changed files with 189 additions and 103 deletions.
9 changes: 4 additions & 5 deletions docs/.vuepress/config/themeConfig/nav.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ module.exports = [
text: 'Java', link: '/java/', items: [
{
text: 'Java-Se', items: [
{ text: '前言', link: '/java/se/preface/' },
{ text: 'Java基础', link: '/java/se/initial-java/' },
{ text: 'Java面向对象', link: '/java/se/object/' },
{ text: 'Java常用类', link: '/java/se/commonly-used-class/' },
Expand Down Expand Up @@ -33,14 +32,14 @@ module.exports = [

{
text: 'SQL 数据库', items: [
{ text: 'MySQL', link: '/mysql/preface/' },
{ text: 'MySQL', link: '/mysql/' },

]
},

{
text: 'NoSQL 数据库', items: [
{ text: 'Redis', link: '/redis/study-note/1/' },
{ text: 'Redis', link: '/redis/' },
{ text: 'ElasticSearch', link: '/es/' },
]
},
Expand All @@ -60,8 +59,8 @@ module.exports = [
{
text: '工具|部署',
items: [
{ text: 'Git', link: '/git/simple-commit/' },
{ text: 'Docker', link: '/docker/overview/' },
{ text: 'Git', link: '/git/' },
{ text: 'Docker', link: '/docker/' },
{ text: 'RabbitMQ', link: '/rabbitmq/' },
]
},
Expand Down
26 changes: 24 additions & 2 deletions docs/00.目录页/01.java.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ pageComponent:
data:
key: 01.Java
imgUrl: /img/web.png
description: java笔记
title: java页面
description: java目录页,最下面有java学习路线
title: java
date: 2021年4月14日14:39:06
permalink: /java
sidebar: false
Expand All @@ -14,3 +14,25 @@ comment: false
editLink: false
---



- 尚硅谷的java学习路线:<https://www.bilibili.com/read/cv5216534>

- 狂神的java视频地址:<https://www.bilibili.com/read/cv5702420>

> 关于知识体系如何搭建:
GitHub:<https://github.com/oddfar/notes>

Gitee: <https://gitee.com/oddfar/notes>

### 为何不用博客

本人博客:https://oddfar.com

搭建博客需要服务器+域名,在阿里云购买学生机即可

写博客个人推荐使用typecho,好看的主题有[handsome](https://www.ihewro.com/archives/489/)(收费88)、[joe](https://typecho.me/1520.html)(免费)

最开始我是用的博客做笔记,虽然有很多功能,后来博客页面美化的越来越“花里胡哨”,不适合进行大文章的阅读,以及不能更快更好的查看知识,后来发现了vuepress,特别适合做文档或知识体系,于是就选择了它。

46 changes: 0 additions & 46 deletions docs/01.Java/01.前言.md

This file was deleted.

16 changes: 12 additions & 4 deletions docs/01.Java/02.java-基础/01.初识java.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ categories:
- java
- java-se
---


# 初始java

## Java : 一个帝国的诞生
Expand Down Expand Up @@ -302,7 +304,7 @@ Java 占据了大部分的服务器端开发,尤其是关键的复杂的系统

## Java的特性和优势

#### 八大特性
### 八大特性

**1、跨平台/可移植性**

Expand Down Expand Up @@ -348,7 +350,7 @@ Java是一种健壮的语言,吸收了C/C++ 语言的优点,但去掉了其

如果出现某种出乎意料之事,程序也不会崩溃,而是把该异常抛出,再通过异常处理机制加以处理。

#### 核心优势
### 核心优势

![img](https://cdn.jsdelivr.net/gh/oddfar/static/img/初识java.assets/v2-9992d6134d870ebd7d6b93c11440329d_720w.jpg)

Expand Down Expand Up @@ -453,11 +455,17 @@ Java语言虽然比较接近解释型语言的特征,但在执行之前已经

总之,随着设计技术与硬件的不断发展,编译型与解释型两种方式的界限正在不断变得模糊。

#### 第一步:编译
::: tip 第一步:编译

:::

利用编译器(javac)将源程序编译成字节码à 字节码文件名:源文件名.class

#### 第二部:运行
::: tip 第二部:运行

:::



利用虚拟机(解释器,java)解释执行class字节码文件。

Expand Down
1 change: 0 additions & 1 deletion docs/01.Java/20.JavaWeb/20.总览.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ author:
categories:
- java
- java-web
categoryText: java
date: 2021-05-07 18:09:11
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,24 @@
---
title: MySQL - 前言
permalink: /mysql/preface/
date: 2021-05-20 09:55:12
pageComponent:
name: Catalogue
data:
path: 03.数据库/15.MySQL
imgUrl: /img/web.png
description: MySQL目录页
title: MySQL- 知识体系
permalink: /mysql
sidebar: true
article: false
comment: false
editLink: false
date: 2021-08-03 18:04:03

---





**MySQL入门:**

MySQL基础笔记可看 [菜鸟教程](https://www.runoob.com/mysql/mysql-tutorial.html)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
# Redis知识体系
---
pageComponent:
name: Catalogue
data:
path: 03.数据库/10.Redis/01.Redis学习笔记
imgUrl: /img/web.png
description: Redis - 知识体系
title: Redis - 知识体系
permalink: /redis
sidebar: true
article: false
comment: false
editLink: false
date: 2021-08-03 22:08:32
---





Expand All @@ -13,13 +29,21 @@
## 学习资料

- Redis官网:http://redis.io/

- Redis官方文档:http://redis.io/documentation

- Redis教程:http://www.w3cschool.cn/redis/redis-intro.html

- Redis下载:http://redis.io/download

- redis英文文档 https://redis.io/topics/data-types

- redis中文文档 http://www.redis.cn/documentation.html

- 《redis设计与实现 3.0版本》 http://redisbook.com/index.html

- redis菜鸟教程 https://www.runoob.com/redis/redis-tutorial.html

- redis源码解读 3.2.8版本 https://blog.csdn.net/men_wen/article/details/75668345

- ♥Redis教程 - Redis知识体系详解♥
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: Redis - 概念和基础
date: 2021-05-17 16:10:19
permalink: /pages/28aa50/
---
<p style='color:red' >狂神redis视频教程视频教程:https://www.bilibili.com/video/BV1S54y1R7SB </p>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: Redis - 五大数据类型
date: 2021-05-17 16:11:13
permalink: /pages/6ea36e/
---
## 五大数据类型

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: Redis - 三种特殊数据类型
date: 2021-05-17 16:12:21
permalink: /pages/5898ab/
---
## 三种特殊数据类型

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: Redis - 事务
date: 2021-05-17 16:13:06
permalink: /pages/41f31b/
---
## Redis事务

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: Redis - Java
date: 2021-05-17 16:13:40
permalink: /pages/216cfe/
---
## Jedis

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: Redis - 学习笔记-总览
date: 2021-05-10 16:16:46
permalink: /pages/feab74/
---

## Redis.conf
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,22 @@
---
permalink: /es/
title: ElasticSearch知识体系
date: 2021-06-09 22:54:05
pageComponent:
name: Catalogue
data:
path: 03.数据库/15.ElasticSearch
imgUrl: /img/web.png
description: ElasticSearch目录页
title: ElasticSearch - 知识体系
permalink: /es
sidebar: true
article: false
comment: false
editLink: false
date: 2021-08-03 18:04:03
---

# ElasticSearch知识体系




<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
Expand All @@ -22,7 +34,7 @@ date: 2021-06-09 22:54:05

**中华石杉的讲解视频**

- 初级视频:
- 初级视频:

https://www.bilibili.com/video/BV1p4411h7sR

Expand All @@ -42,7 +54,7 @@ date: 2021-06-09 22:54:05

- 低版本中文文档

https://www.elastic.co/guide/cn/elasticsearch/guide/current/foreword_id.html
https://www.elastic.co/guide/cn/elasticsearch/guide/current/foreword_id.html

- 最新版本的官方文档

Expand Down
22 changes: 22 additions & 0 deletions docs/05.工具部署/01.Git/00.Git.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
pageComponent:
name: Catalogue
data:
path: 05.工具部署/01.Git
imgUrl: /img/web.png
description: Git目录页
title: Git - 知识体系
permalink: /git
sidebar: true
article: false
comment: false
editLink: false
date: 2021-08-03 22:27:45
---



## 教程

新人推荐看尚硅谷的 Git 教程:[5h打通Git全套教程丨2021最新IDEA版(涵盖GitHub\Gitee码云\GitLab)](https://www.bilibili.com/video/BV1vy4y1s7k6)

6 changes: 1 addition & 5 deletions docs/05.工具部署/01.Git/01.Git简单提交.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Git - 简单提交
date: 2021-05-15 08:36:23
permalink: /git/simple-commit/
permalink: /pages/7d2d32/
---

<!-- START doctoc generated TOC please keep comment here to allow auto update -->
Expand Down Expand Up @@ -123,7 +123,3 @@ git clone https://github.com/oddfar/docs.git

https 在国内不太稳定,有时候链接不上,建议用 SSH 链接来对仓库进行管理

## 教程

新人推荐看尚硅谷的 Git 教程:[5h打通Git全套教程丨2021最新IDEA版(涵盖GitHub\Gitee码云\GitLab)](https://www.bilibili.com/video/BV1vy4y1s7k6)

2 changes: 1 addition & 1 deletion docs/05.工具部署/01.Git/02.SSH免密登录.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Git - SSH免密登录
permalink: /git/ssh/
date: 2021-05-20 13:05:16
permalink: /pages/5747a6/
---

<!-- START doctoc generated TOC please keep comment here to allow auto update -->
Expand Down
2 changes: 1 addition & 1 deletion docs/05.工具部署/01.Git/04.Git - Commit常用表情.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Git - Commit常用表情
permalink: /git/commit-emoji/
date: 2021-05-28 23:54:11
permalink: /pages/fe0004/
---

<!-- START doctoc generated TOC please keep comment here to allow auto update -->
Expand Down
Loading

0 comments on commit c6fd947

Please sign in to comment.