Skip to content

Commit

Permalink
spring related (#19)
Browse files Browse the repository at this point in the history
* spring related

* springboot test starter
  • Loading branch information
NAVERON authored Oct 22, 2023
1 parent 2f26d84 commit 00a1d5c
Show file tree
Hide file tree
Showing 15 changed files with 163 additions and 10 deletions.
8 changes: 5 additions & 3 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ title: 玉龙视效工作室
description: 玉龙个人网站博客聚集地
theme: just-the-docs
# logo: "https://avatars.githubusercontent.com/u/14134183?v=4"
favicon_ico: "/assets/images/favicon.png"

url: https://naveron.github.io/

aux_links:
Expand All @@ -12,11 +14,11 @@ nav_external_links:
- title: evs on github
url: "https://github.com/NAVERON/naveron.github.io"
hide_icon: false
opens_in_new_tab: false
opens_in_new_tab: true
- title: evs on bilibili
url: "https://space.bilibili.com/89060131"
hilde_icon: false
opens_in_new_tab: false
opens_in_new_tab: true

# set back to top
back_to_top: true
Expand All @@ -27,7 +29,7 @@ color_scheme: dark
# Version of mermaid library
mermaid:
# Pick an available version from https://cdn.jsdelivr.net/npm/mermaid/
version: "10.4.0"
version: "10.5.1"

# math: mathjax

Expand Down
3 changes: 3 additions & 0 deletions _includes/footer_custom.html
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@




3 changes: 3 additions & 0 deletions _includes/nav_footer_custom.html
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@




Binary file added assert/images/daily_thinking_01.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assert/images/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/blog/mermaid.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ mermaid
title: simple graph
---
graph TB
flowchart TB
%% standard normal flow chart graph, also flowchart
init(["init state"])
calcute[/"calcute number"/]
Expand Down
37 changes: 37 additions & 0 deletions docs/daily/thinking.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
title: thinking
layout: post
parent: daily
---

# 零散的笔记

> 包含之前的日记/笔记和日常的普通记录
## 极简项目管理读书摘录和有感

> 2022.03.29
通过开展持续的活动来生产同样的产品或提供重复的服务的工作就是运营,而为创造独特的产品、服务或成果而进行的临时性的工作则是项目
客户基于他们的阅历与认知,习惯于把自己的需求套到现实中可实现的方法或物质中。在这里,社会公众见过马但没见过汽车,于是他们用“已经见过的马”来描述“还未见过的更快的交通工具(汽车)”,所以他们的回答才会是一匹跑得更快的马
实际上,针对业务的解决方案才是客户的真实需求

## 整理杂物有感

> 2022.08.22
**摘录 : **
此生无非是两件事的较量
有多难 VS 有多爱
最终战胜困境的
唯有热爱
新的一年 敬无常
愿你依然有坚持的勇气和期待的欢喜心

![daily_thinking_01.jpg](../../assert/images/daily_thinking_01.jpg)

整理一些东西, 保存一些东西, 丢掉一些东西, 明白了生活本该如此, 保持热爱, 持续前进, 不用管别人说什么......




12 changes: 12 additions & 0 deletions docs/note/guiderpc.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
title: guiderpc
parent: note
layout: post
---

# Guide RPC

> remote procedure calling


3 changes: 2 additions & 1 deletion docs/note/mathjax.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ title: mathjax
parent: note
layout: mathjax
---

math
{:. label .label-green}
{: .label .label-green}

mathjax
{: .label}
Expand Down
12 changes: 12 additions & 0 deletions docs/note/tinyioc.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
title: tinuioc
parent: note
layout: post
---

# tiny ioc





70 changes: 70 additions & 0 deletions docs/program/git.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,5 +146,75 @@ HEAD指向当前版本

## git mermaid

一般的开发流程/过程表示

```mermaid
---
title: 开发团队使用git协作开发示意图
---
gitGraph
commit id: "init repo"
branch preview
checkout preview
commit id: "pre build branch"
branch dev1
branch dev2
%% 开发1拉取分支开发
checkout dev1
commit id: "init"
commit id: "complete"
%% 开发2拉取分支开发
checkout dev2
commit id: "func 2"
commit id: "feature 2"
commit id: "finish"
checkout preview
merge dev1
commit id: "deploy 1" tag: "v0.0.1"
merge dev2
commit id: "deploy 2" tag: "v0.0.2"
branch bugfix1
checkout bugfix1
commit id: "bugfix sth ..."
commit id: "bug fixup, test"
checkout preview
merge bugfix1
commit id: "for test"
%% branch 后直接跟commit相当于checkout
branch bugfix2
checkout bugfix2
commit
commit
commit
checkout preview
merge bugfix2
commit id: "rebuild project" tag: "v0.0.3"
%% 默认分支 main, 一个大版本完成后, 整体合并到main分支准备发布
checkout main
merge preview
commit id: "build big version" tag: "v0.1.0"
%% 继续preview分支拆分开发分支继续开发
checkout preview
branch dev3
checkout dev3
commit
commit
checkout preview
merge dev3
checkout main
merge preview
```


5 changes: 5 additions & 0 deletions docs/program/spring.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ spring-test
> - 快速迭代, 基于测试快速更新和上线
> - 从方案设计到代码开发, 自动化测试到部署上线, 新时代的开发瀑布
### notes

> [JUnit 5](https://junit.org/junit5/docs/current/user-guide/#overview)
> [springboot test starter](https://docs.spring.io/spring-framework/reference/testing.html)
# spring cloud


Expand Down
2 changes: 1 addition & 1 deletion docs/system/scripts.md
Original file line number Diff line number Diff line change
Expand Up @@ -901,7 +901,7 @@ if __name__ == "__main__" :
parser.add_argument("-fn", "--sender_name", dest="arg_from_name", help="set sender user name", default="wangyulong")
parser.add_argument("-fa", "--from_mail_address", dest="arg_from_mail_addr", help="set sender mail address, must and just one", required=True)
parser.add_argument("-fp", "--from_mail_password", dest="arg_from_mail_pwd", help="set sender mail password", required=True)
parser.add_argument("-sn", "--mail_server", dest="arg_mail_server", help="set mail service server name", default="mail.xiaomi.com")
parser.add_argument("-sn", "--mail_server", dest="arg_mail_server", help="set mail service server name", default="mail.xxx.com")
parser.add_argument("-sp", "--mail_server_port", dest="arg_mail_server_port", type=int, help="set mail service server port", default=25)
parser.add_argument("-rn", "--reciver_name", dest="arg_to_name", help="set reciver user name", default="wangyulong")
parser.add_argument("-ta", "--to_mail_address", dest="arg_to_mail_addr", help="set reciver mail address, can separated by comma", required=True)
Expand Down
Binary file modified favicon.ico
Binary file not shown.
16 changes: 12 additions & 4 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,21 @@ layout: home
{: .important-title }
> 一个属于自己的天地 : **玉龙视效工作室**
>
> [ERON VISUAL STUDIO (**EVS**)](https://github.com/NAVERON){: .btn .btn-green }
> [ERON VISUAL STUDIO (**EVS**)](https://github.com/NAVERON){: .btn .btn-green}
## 关于

才疏学浅, 贻笑大方

### 关于我自己
### 我自己

[About Me](docs/summary.md)
[About Me](docs/summary)

### 主要项目

- [ShipSimulation](https://github.com/NAVERON/ShipSimulation)
- [ArbitraryCoding](https://github.com/NAVERON/ArbitraryCoding)
- [SpecializedExercises](https://github.com/NAVERON/SpecializedExercises)
- ......

## 开始

Expand Down Expand Up @@ -86,6 +85,11 @@ grand_parent: Layout # 上上级路径

**mermaid绘图工具的使用** : [Mermaid Start](https://mermaid.js.org/intro/)

### 数学公式

**Latex** : [Latex](https://www.latex-project.org/)
**mathjax Web数学公式渲染引擎** : [mathjax](https://www.mathjax.org/)

### 搜索整理

因为使用中文无法提供搜索, 所以使用分类标签实现每个文档的类别标记, 方便查找
Expand All @@ -102,4 +106,8 @@ others colors
.label-green .label-purple .label-yellow .label-red
```

### 特殊使用

- 引用相对路径文件时, 不带后缀, 如直接使用docs前路径下的`summary.md`文件, 即`./docs/summary` 这样使用路径即可
- ...

0 comments on commit 00a1d5c

Please sign in to comment.