SpringBootMonitor spring-boot-admin源码分析及单机监控spring-boot-monitor的实现(一) spring-boot-admin源码分析及单机监控spring-boot-mo…
分类:Spring Boot
Spring对注解(Annotation)处理源码分析1——扫描和读取Bean定义
1.从Spring2.0以后的版本中,Spring也引入了基于注解(Annotation)方式的配置,注解(Annotation)是JDK1.5中引入的一个新特性,用于简化Bean的配置,某些场合可以取代X…
Spring Boot 启动过程分析(二)
@EnableAutoConfiguration 源码如下: /** * Enable auto-configuration of the Spring Application Context, attempting t…
Spring 启动过程分析
要想很好理解这三个上下文的关系,需要先熟悉spring是怎样在web容器中启动起来的。spring的启动过程其实就是其IoC容器的启动过程,对于web程序,IoC容器启动过程即是建立上下文的过程。 spring的启动过程…
spring aop 源码分析
spring在解析xml配置文件的时候,会根据传入的namespaceUri找到对应的NamespaceHandler,这个映射是在spring.handlers中配置的。 拿aop举例: spring aop的配置文件…
spring boot 源码解析48-MetricsEndpoint
前言 本文我们来解析MetricsEndpoint(之前没有讲述的) 解析 MetricsEndpoint继承自AbstractEndpoint. 字段,构造器如下: // 获得PublicMetrics中所有类型的Pu…
spring源码分析-spring简介
对与优秀的框架,学习它,模仿它。 1.spring是什么? a)轻量级 零配置编程、API使用简单 b)面向Bean 只需要编写非常普通的Bean c)松耦合 充分利用AOP思想 d)万能胶 与主流框架无缝集成 e)设计…
spring源码分析(2)——Bean 定义的解析与Bean的注册
public AnnotationConfigApplicationContext(Class<?>... annotatedClasses) { this(); register(annotatedClas…
关于Spring Boot 的 ApplicationRunner ,CommandLineRunner 的源码探究
关于Spring Boot 的 ApplicationRunner ,CommandLineRunner 的源码探究 1.关于ApplicationRunner // 源码 package org.springframe…
spring源码分析(十)——Servlet容器注册组件
1、Servlet容器启动会扫描,当前应用里面每一个jar包的 ServletContainerInitializer的实现 2、提供ServletContainerInitializer的实现类; 必须绑定在,META…
Spring Cloud Config Server迁移节点或容器化带来的问题
如果您跟我一样,目前正在使用Spring Cloud Config做为配置中心的话,本篇将来要描述的问题,强烈推荐了解和关注!因为这个问题目前存在于所有的版本中,还没有完全修复。 原文链接:http://blog.did…
Spring MVC HandlerInterceptor 实现原理(源码)
最近一段时间都不怎么在CSDN上写文章,转到 * 简书 *了,感兴趣的可以关注一下! 上一篇文章中介绍了 Spring MVC HandlerInterceptor的使用和应用场景,本篇中我们将结合Spring MVC …