spring
文章平均质量分 62
对spring日常学习的一些记录
吊儿郎当当
这个作者很懒,什么都没留下…
展开
-
SpringBoot(一) 初识
从本篇文章开始,记录学习 SpringBoot 框架在实践,源码方面的知识,本节是第一篇,因此不涉及相关复杂知识的学习。转载 2022-06-02 21:25:19 · 58 阅读 · 0 评论 -
springboot配置类自动加载机制
简单介绍一下springboot是如何自动识别加载spring.factories里的EnableAutoConfigurationspringboot项目启动类都会使用@SpringBootApplication(或是@EnableAutoConfiguration)注解。而@SpringBootApplication注解实际上也使用了@EnableAutoConfiguration,如下@Target(ElementType.TYPE)@Retention(RetentionPolicy.RU.原创 2021-09-11 15:50:56 · 752 阅读 · 0 评论 -
Spring的refresh(一)
本文主要介绍下refresh方法中调用的invokeBeanFactoryPostProcessors(beanFactory)方法。先看下源码:/** * Instantiate and invoke all registered BeanFactoryPostProcessor beans, * respecting explicit order if given. * <p>Must be called before singleton instantiation. */原创 2021-08-28 18:08:05 · 105 阅读 · 0 评论 -
@Conditional原理
Condition是spring-context从4.0版本开始体用的一个原创 2021-08-28 14:20:15 · 296 阅读 · 0 评论 -
spring引入servicebean
说明时序图如何引入ServiceBean自定义spring标签通过源码串联一下整个流程,只关注下关键代码org.springframework.context.support.AbstractApplicationContext@Overridepublic void refresh() throws BeansException, IllegalStateException { synchronized (this.startupShutdownMon...原创 2021-08-14 22:08:11 · 352 阅读 · 0 评论