Skip to content

Commit

Permalink
fig bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
jinyue233 committed Apr 4, 2020
1 parent d27117e commit 00840d1
Show file tree
Hide file tree
Showing 9 changed files with 30 additions and 7 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
微信公众号【**源码笔记**】,专注于Java后端系列框架的源码分析。每周持续推出SpringBoot,Spring,Mybatis,Dubbo,RocketMQ,Jdk 和Netty等Java后端系列框架的源码分析文章。

* SpringBoot源码解析项目,项目里有超详细的中文注释:https://github.com/yuanmabiji/spring-boot-2.1.0.RELEASE


**公众号**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

## 1 前言
这是SpringBoot2.1源码分析专题的第一篇文章,主要讲如何来搭建我们的源码阅读调试环境。如果有经验的小伙伴们可以略过此篇文章。
## 2 环境安装要求
Expand Down Expand Up @@ -54,3 +55,5 @@ mvn clean install -DskipTests -Pfast

**原创不易,帮忙Star一下呗**

注:该源码分析对应SpringBoot版本为**2.1.0.RELEASE**,本文对应的SpringBoot源码解析项目github地址:https://github.com/yuanmabiji/spring-boot-2.1.0.RELEASE

Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
注:该源码分析对应SpringBoot版本为**2.1.0.RELEASE**
## 1 前言
本篇接
[如何搭建自己的SpringBoot源码调试环境?--SpringBoot源码(一)](https://github.com/yuanmabiji/Java-SourceCode-Blogs/blob/master/SpringBoot/1%20%E5%A6%82%E4%BD%95%E6%90%AD%E5%BB%BA%E8%87%AA%E5%B7%B1%E7%9A%84SpringBoot%E6%BA%90%E7%A0%81%E8%B0%83%E8%AF%95%E7%8E%AF%E5%A2%83%EF%BC%9F%20%20SpringBoot%E6%BA%90%E7%A0%81%EF%BC%88%E4%B8%80%EF%BC%89.md)
Expand Down Expand Up @@ -96,10 +95,14 @@ SpringBoot的各模块之间的pom关系有点复杂,确实有点绕,如果

**原创不易,帮忙Star一下呗**

注:该源码分析对应SpringBoot版本为**2.1.0.RELEASE**,本文对应的SpringBoot源码解析项目github地址:https://github.com/yuanmabiji/spring-boot-2.1.0.RELEASE


参考:

1,https://github.com/spring-projects/spring-boot/tree/v2.1.0.RELEASE

2,https://docs.spring.io/spring-boot/docs/1.5.2.RELEASE/reference/htmlsingle/#cli



Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
**注:该源码分析对应SpringBoot版本为2.1.0.RELEASE**
# 1 前言
本篇接
[如何分析SpringBoot源码模块及结构?--SpringBoot源码(二)](https://github.com/yuanmabiji/Java-SourceCode-Blogs/blob/master/SpringBoot/2%20%E5%A6%82%E4%BD%95%E5%88%86%E6%9E%90SpringBoot%E6%BA%90%E7%A0%81%E6%A8%A1%E5%9D%97%E5%8F%8A%E7%BB%93%E6%9E%84%EF%BC%9F%20%20SpringBoot%E6%BA%90%E7%A0%81%EF%BC%88%E4%BA%8C%EF%BC%89.md)
Expand Down Expand Up @@ -590,6 +589,10 @@ private ConditionOutcome isServletWebApplication(ConditionContext context) {

**原创不易,帮忙Star一下呗**

注:该源码分析对应SpringBoot版本为**2.1.0.RELEASE**,本文对应的SpringBoot源码解析项目github地址:https://github.com/yuanmabiji/spring-boot-2.1.0.RELEASE



参考:

1,[spring 自动配置(上) 配置文件和插件解读](https://www.jianshu.com/p/e575fddb6cb1)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
**注:该源码分析对应SpringBoot版本为2.1.0.RELEASE**

# 1 前言
本篇接
[助力SpringBoot自动配置的条件注解ConditionalOnXXX分析--SpringBoot源码(三)](https://github.com/yuanmabiji/Java-SourceCode-Blogs/blob/master/SpringBoot/3%20%E5%8A%A9%E5%8A%9BSpringBoot%E8%87%AA%E5%8A%A8%E9%85%8D%E7%BD%AE%E7%9A%84%E6%9D%A1%E4%BB%B6%E6%B3%A8%E8%A7%A3%E5%8E%9F%E7%90%86%E6%8F%AD%E7%A7%98%20%20SpringBoot%E6%BA%90%E7%A0%81%EF%BC%88%E4%B8%89%EF%BC%89.md)
Expand Down Expand Up @@ -743,6 +743,9 @@ public static void register(BeanDefinitionRegistry registry, String... packageNa
由于笔者水平有限,若文中有错误还请指出,谢谢。


注:该源码分析对应SpringBoot版本为**2.1.0.RELEASE**,本文对应的SpringBoot源码解析项目github地址:https://github.com/yuanmabiji/spring-boot-2.1.0.RELEASE


参考:

1,[@AutoConfigurationPackage注解](https://blog.csdn.net/ttyy1112/article/details/101284541)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
**注:该源码分析对应SpringBoot版本为2.1.0.RELEASE**


# 1 前言

Expand Down Expand Up @@ -872,6 +872,9 @@ private Object bindBean(ConfigurationPropertyName name, Bindable<?> target, // n

由于笔者水平有限,若文中有错误还请指出,谢谢。

注:该源码分析对应SpringBoot版本为**2.1.0.RELEASE**,本文对应的SpringBoot源码解析项目github地址:https://github.com/yuanmabiji/spring-boot-2.1.0.RELEASE



参考:
1,[JSR-303](https://www.jianshu.com/p/554533f88370)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
**注:该源码分析对应SpringBoot版本为2.1.0.RELEASE**

# 1 温故而知新
本篇接 [外部配置属性值是如何被绑定到XxxProperties类属性上的?--SpringBoot源码(五)](https://github.com/yuanmabiji/Java-SourceCode-Blogs/blob/master/SpringBoot/5%20SpringBoot%E7%9A%84%E9%85%8D%E7%BD%AE%E5%B1%9E%E6%80%A7%E5%80%BC%E6%98%AF%E5%A6%82%E4%BD%95%E7%BB%91%E5%AE%9A%E7%9A%84%EF%BC%9F%20SpringBoot%E6%BA%90%E7%A0%81%EF%BC%88%E4%BA%94%EF%BC%89.md)

Expand Down Expand Up @@ -197,6 +197,9 @@ Maven的`optional`标签表示可选依赖即不可传递的意思,下面直

由于笔者水平有限,若文中有错误还请指出,谢谢。

注:该源码分析对应SpringBoot版本为**2.1.0.RELEASE**,本文对应的SpringBoot源码解析项目github地址:https://github.com/yuanmabiji/spring-boot-2.1.0.RELEASE


参考:
1,[Maven 依赖传递性透彻理解](https://dayarch.top/p/maven-dependency-optional-transitive.html)

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
**注:该源码分析对应SpringBoot版本为2.1.0.RELEASE**

# 1 温故而知新
本篇接 [SpringBoot内置的各种Starter是怎样构建的? SpringBoot源码(六)](https://github.com/yuanmabiji/Java-SourceCode-Blogs/blob/master/SpringBoot/6%20SpringBoot%E5%86%85%E7%BD%AE%E7%9A%84%E5%90%84%E7%A7%8DStarter%E6%98%AF%E6%80%8E%E6%A0%B7%E6%9E%84%E5%BB%BA%E7%9A%84%EF%BC%9F%20%20SpringBoot%E6%BA%90%E7%A0%81%EF%BC%88%E5%85%AD%EF%BC%89.md)

Expand Down Expand Up @@ -211,3 +211,5 @@ public ConfigurableApplicationContext run(String... args) {
**原创不易,帮忙Star一下呗**

由于笔者水平有限,若文中有错误还请指出,谢谢。

注:该源码分析对应SpringBoot版本为**2.1.0.RELEASE**,本文对应的SpringBoot源码解析项目github地址:https://github.com/yuanmabiji/spring-boot-2.1.0.RELEASE
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
**注:该源码分析对应SpringBoot版本为2.1.0.RELEASE**

本篇接 [SpringBoot的启动流程是怎样的?SpringBoot源码(七)](https://github.com/yuanmabiji/Java-SourceCode-Blogs/blob/master/SpringBoot/7%20SpringBoot%E7%9A%84%E5%90%AF%E5%8A%A8%E6%B5%81%E7%A8%8B%E6%98%AF%E6%80%8E%E6%A0%B7%E7%9A%84%EF%BC%9FSpringBoot%E6%BA%90%E7%A0%81%EF%BC%88%E4%B8%83%EF%BC%89.md)

Expand Down Expand Up @@ -429,3 +428,6 @@ private <T> List<T> createSpringFactoriesInstances(Class<T> type,
**原创不易,帮忙Star一下呗**

由于笔者水平有限,若文中有错误还请指出,谢谢。

注:该源码分析对应SpringBoot版本为**2.1.0.RELEASE**,本文对应的SpringBoot源码解析项目github地址:https://github.com/yuanmabiji/spring-boot-2.1.0.RELEASE

0 comments on commit 00840d1

Please sign in to comment.