本系列文章非官网文档的直接翻译,主要是学习笔记等个人记录,具体包含以下内容:
- 阅读学习过程中的一些笔记和部分想法
- 觉得写得比较好的或者设计思路比较好的官方文档原文
- 部分标准代码和配置示例
学习Spring Framework官方文档的原因:
之前维护过关于Spring Boot项目 和 Spring MVC遗留项目,也用过Spring Cloud。搜索引擎的滥用和快节奏的工作让我的知识过于碎片化,无法全面掌握Spring具有的所有能力,导致有些问题可能官方实际上有解决办法,但是自己并不知道,如果通过搜索引擎又过于浪费时间(经常解决一个问题要搜索很久)。所以,决定花一些业余时间将这些东西梳理一下,而阅读官方文档,应该是最权威和有效的方式。阅读的同时,也会顺带看一些源码的具体实现,Spring的代码质量相当好,有很多值得学习的地方(架构、设计模式等等)。
本人会将官方文档涉及的代码示例按照学习顺序实现一遍,放在我的github上,感觉有帮助的朋友帮忙给个star,感谢:
https://github.com/jy03187487/LearnSpringFramework
以下为笔记文章列表:
The IoC Container 1.1 - 1.3
The IoC Container 1.4.1
The IoC Container 1.4.2-1.4.6
The IoC Container 1.5
The IoC Container 1.6
The IoC Container 1.7
The IoC Container 1.8
The IoC Container 1.9.2 Using @Autowired
The IoC Container 1.9.3-1.9.8
The IoC Container 1.10.1-1.10.4
The IoC Container 1.10.5-1.10.9
The IoC Container 1.11
The IoC Container 1.12
The IoC Container 1.13-1.14
The IoC Container 1.15
The IoC Container 1.16. The BeanFactory
The IoC Container 2. Resources
The IoC Container 5. Aspect Oriented Programming with Spring
The IoC Container 5. PonitCut定义方式
The IoC Container 5. 使用Spring AOP实现事务示例处理器
The IoC Container 5. Spring Advice详解
官方文档链接:
Spring Framework
声明:
本学习笔记并不完全适合初学者,很多基础的东西并不会体现,尤其一眼看去就可以理解的东西不会进行相关说明。建议下载上面github示例代码进行参考更易于理解。
网友评论