Skip to content

Commit 9d7f027

Browse files
committed
format
1 parent 6979d22 commit 9d7f027

11 files changed

Lines changed: 30 additions & 16 deletions

README.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
- [csdn:https://mp.csdn.net/postlist](https://mp.csdn.net/postlist)
2-
31
## Java
42
- [java.md ✔](https://github.com/Panl99/codebook/blob/master/java/java.md)
5-
- [java.java](https://github.com/Panl99/codebook/blob/master/java/java.java)
6-
- [Java诊断工具:arthas](https://github.com/Panl99/codebook/blob/master/arthas/arthas.md)
3+
- [java.java TODO](https://github.com/Panl99/codebook/blob/master/java/java.java)
4+
- [annotation.md TODO](https://github.com/Panl99/codebook/blob/master/java/annotation.md)
5+
- [Java诊断工具:arthas TODO](https://github.com/Panl99/codebook/blob/master/arthas/arthas.md)
76

87
## Python ✔
98
- [python.md ✔](https://github.com/Panl99/codebook/blob/master/python/python.md)
@@ -37,14 +36,17 @@
3736
- [nginx.md ✔](https://github.com/Panl99/codebook/blob/master/nginx_lvs/nginx.md)
3837
- [nginx.conf](https://github.com/Panl99/codebook/blob/master/nginx_lvs/nginx.conf)
3938
- [lvs.md](https://github.com/Panl99/codebook/blob/master/nginx_lvs/lvs.md)
40-
- Nginx -> Envoy Proxy | APISIX
39+
- Nginx -> Envoy Proxy | APISIX | Consul | Nacos
4140

4241
## ElasticSearch
4342
- [elasticsearch.md](https://github.com/Panl99/codebook/blob/master/elasticsearch/elasticsearch.md)
4443

4544
## Linux ✔
4645
- [linux.md ✔](https://github.com/Panl99/codebook/blob/master/linux/linux.md)
4746

47+
## Go
48+
- [go.md TODO](https://github.com/Panl99/codebook/blob/master/go/go.md)
49+
4850
## Git,Maven ✔
4951
- [git.md ✔](https://github.com/Panl99/codebook/blob/master/git_maven/git.md)
5052
- [maven.md](https://github.com/Panl99/codebook/blob/master/git_maven/maven.md)
@@ -56,6 +58,8 @@
5658
- [hbase.md](https://github.com/Panl99/codebook/blob/master/bigdata/hbase.md)
5759
- [flink.md ×](https://github.com/Panl99/codebook/blob/master/bigdata/flink.md)
5860

61+
## [csdn:https://mp.csdn.net/postlist](https://mp.csdn.net/postlist)
62+
5963
## [ali面试题](https://files.alicdn.com/tpsservice/569551994992fac384988407af9c02a8.pdf)
6064
技术 | 链接
6165
----|----
@@ -98,3 +102,4 @@
98102
- [互联网上的免费书籍:https://github.com/ruanyf/free-books](https://github.com/ruanyf/free-books)
99103
- [免费的编程中文书籍索引:https://github.com/justjavac/free-programming-books-zh_CN](https://github.com/justjavac/free-programming-books-zh_CN)
100104
- [pdf大全:https://m.seotest.cn/jishu/31878.html](https://m.seotest.cn/jishu/31878.html)
105+
- [书栈网](https://www.bookstack.cn)

go/go.md

Whitespace-only changes.

java/annotation.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,26 @@
11
# 注解
2-
|注解|属于|使用位置|作用|
3-
|---|---|---|---|
4-
|`@Configuration`|Spring|类上|告知Spring这是一个配置类,会为Spring应用上下文提供bean|
5-
|@Bean|Spring|方法上|表示该方法返回的对象会以bean的形式添加到Spring应用上下文中|
6-
|||||
7-
|@Data|Lombok|类上|自动化方法生成:生成缺失的方法,生成所有以final修饰的参数的构造器|
8-
## java注解
2+
- [Spring Cloud configuration properties](https://docs.spring.io/spring-cloud/docs/2020.0.0/reference/html/configprops.html)
3+
- [Spring-Cloud-configuration-properties.xlsx](../resources/static/doc/Spring-Cloud-configuration-properties.xlsx)
4+
5+
## Java注解
96

107
## Spring注解
118
- **`@Configuration`**
129
```java
1310

1411
```
1512

13+
|注解|属于|使用位置|作用|
14+
|---|---|---|---|
15+
|`@Configuration`|Spring|类上|告知Spring这是一个配置类,会为Spring应用上下文提供bean|
16+
|@Bean|Spring|方法上|表示该方法返回的对象会以bean的形式添加到Spring应用上下文中|
17+
|||||
18+
|@Data|Lombok|类上|自动化方法生成:生成缺失的方法,生成所有以final修饰的参数的构造器|
19+
1620
## SpringBoot注解
1721

22+
## SpringCloud注解
23+
1824
## Lombok注解
1925
- **`@Data`** 类上,自动化方法生成:生成缺失的方法,生成所有以final修饰的参数的构造器。
2026
- **`@Slf4j`** 类上,日志声明,

java/java.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
> [Java 8实战](https://github.com/Panl99/codebook/blob/master/resources/static/books/Java%208%E5%AE%9E%E6%88%98.pdf)
2-
> [Java 8函数式编程](https://github.com/Panl99/codebook/blob/master/resources/static/books/Java%208%E5%87%BD%E6%95%B0%E5%BC%8F%E7%BC%96%E7%A8%8B.pdf)
1+
> [Java 8实战](https://github.com/Panl99/codebook/blob/master/resources/static/doc/Java%208%E5%AE%9E%E6%88%98.pdf)
2+
> [Java 8函数式编程](https://github.com/Panl99/codebook/blob/master/resources/static/doc/Java%208%E5%87%BD%E6%95%B0%E5%BC%8F%E7%BC%96%E7%A8%8B.pdf)
33
44

55
# 目录

python/python.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
> [Python+Cookbook第三版中文v3.0.0.pdf](https://github.com/Panl99/codebook/tree/master/resources/static/books/Python+Cookbook第三版中文v3.0.0.pdf)
2-
> [Python3.8.1标准库参考中文手册.pdf](https://github.com/Panl99/codebook/tree/master/resources/static/books/Python3.8.1标准库参考中文手册(The Python Library Reference) 高清pdf版.pdf)
1+
> [Python+Cookbook第三版中文v3.0.0.pdf](https://github.com/Panl99/codebook/tree/master/resources/static/doc/Python+Cookbook第三版中文v3.0.0.pdf)
2+
> [Python3.8.1标准库参考中文手册.pdf](https://github.com/Panl99/codebook/tree/master/resources/static/doc/Python3.8.1标准库参考中文手册(The Python Library Reference) 高清pdf版.pdf)
33
44
# 目录
55
- [一、Python基础](#一、Python基础)
File renamed without changes.

resources/static/books/Python3.8.1标准库参考中文手册(The Python Library Reference) 高清pdf版.pdf renamed to resources/static/doc/Python3.8.1标准库参考中文手册(The Python Library Reference) 高清pdf版.pdf

File renamed without changes.
62.9 KB
Binary file not shown.

0 commit comments

Comments
 (0)