Spring Boot 加载过程(自动配置及web服务)

简介: Spring Boot 加载过程(自动配置及web服务)

Spring Boot 加载过程(自动配置及web服务)

运行环境

IntelliJ IDEA 2019.2 (Community Edition)

Java 1.8.0_131

Maven apache-maven-3.5.4

Spring Boot  spring-boot-2.2.14.BUILD-SNAPSHOT

引入Spring Boot 依赖

pom.xml

<!-- 第一种方式 -->

<parent>

   <groupId>org.springframework.boot</groupId>

   <artifactId>spring-boot-starter-parent</artifactId>

   <version>2.2.14.BUILD-SNAPSHOT</version>

</parent>

<!-- 第二种方式 -->

<dependencyManagement>

   <dependencies>

       <dependency>

           <!-- Import dependency management from Spring Boot -->

           <groupId>org.springframework.boot</groupId>

           <artifactId>spring-boot-dependencies</artifactId>

           <version>2.2.14.BUILD-SNAPSHOT</version>

           <type>pom</type>

           <scope>import</scope>

       </dependency>

   </dependencies>

</dependencyManagement>

项目入口

importorg.springframework.boot.SpringApplication;

importorg.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication

publicclassTestApplication {

   publicstaticvoidmain(String[] args) {

       SpringApplication.run(TestApplication.class, args);

   }

}

@SpringBootApplication

@SpringBootApplication的源码,可以看到里面组合了三个注解:@ComponentScan,@SpringBootConfiguration,@EnableAutoConfiguration

@Target(ElementType.TYPE)

@Retention(RetentionPolicy.RUNTIME)

@Documented

@Inherited

@SpringBootConfiguration

@EnableAutoConfiguration

@ComponentScan(excludeFilters= { @Filter(type=FilterType.CUSTOM, classes=TypeExcludeFilter.class),

     @Filter(type=FilterType.CUSTOM, classes=AutoConfigurationExcludeFilter.class) })

public@interfaceSpringBootApplication {

// ...

}

@ComponentScan

/**may be specified to define specific packages to scan. If specific

* packages are not defined, scanning will occur from the package of the

* class that declares this annotation.

可以指定来定义要扫描的特定包。如果未定义特定的包,则将从声明此注释的类的包中进行扫描。

*/

public@interfaceComponentScan {

//...

}

@SpringBootConfiguration

/**

* Indicates that a class provides Spring Boot application

* {@link Configuration @Configuration}. Can be used as an alternative to the Spring's

* standard {@code @Configuration} annotation so that configuration can be found

* automatically (for example in tests).

指示类提供Spring引导应用程序。可以作为Spring的标准{@code@Configuration}注释的替代,以便可以找到自动配置(例如在测试中)。

*/

@Configuration

public@interfaceSpringBootConfiguration {

//...

}

@EnableAutoConfiguration

@Import(AutoConfigurationImportSelector.class)

public@interfaceEnableAutoConfiguration {

//...

}

@EnableAutoConfiguration是springboot实现自动化配置的核心注解,通过这个注解把spring应用所需的bean注入容器中。@EnableAutoConfiguration源码通过@Import注入了一个ImportSelector的实现类 AutoConfigurationImportSelector,这个ImportSelector最终实现动态加载。 AutoConfigurationImportSelector完成动态加载过程如下:

org.springframework.boot.autoconfigure.AutoConfigurationImportSelector.AutoConfigurationGroup#process

org.springframework.boot.autoconfigure.AutoConfigurationImportSelector#getAutoConfigurationEntry

org.springframework.boot.autoconfigure.AutoConfigurationImportSelector#getCandidateConfigurations

org.springframework.core.io.support.SpringFactoriesLoader#loadFactoryNames

publicfinalclassSpringFactoriesLoader {

   publicstaticfinalStringFACTORIES_RESOURCE_LOCATION="META-INF/spring.factories";

   privatestaticMap<String, List<String>>loadSpringFactories(@NullableClassLoaderclassLoader) {

       MultiValueMap<String, String>result=cache.get(classLoader);

       if (result!=null) {

           returnresult;

       }

       try {

           Enumeration<URL>urls= (classLoader!=null?

                   classLoader.getResources(FACTORIES_RESOURCE_LOCATION) :

                   ClassLoader.getSystemResources(FACTORIES_RESOURCE_LOCATION));

           result=newLinkedMultiValueMap<>();

           while (urls.hasMoreElements()) {

               URLurl=urls.nextElement();

               UrlResourceresource=newUrlResource(url);

               Propertiesproperties=PropertiesLoaderUtils.loadProperties(resource);

               for (Map.Entry<?, ?>entry : properties.entrySet()) {

                   StringfactoryTypeName= ((String) entry.getKey()).trim();

                   for (StringfactoryImplementationName : StringUtils.commaDelimitedListToStringArray((String) entry.getValue())) {

                       result.add(factoryTypeName, factoryImplementationName.trim());

                   }

               }

           }

           cache.put(classLoader, result);

           returnresult;

       }

       catch (IOExceptionex) {

           thrownewIllegalArgumentException("Unable to load factories from location ["+

                   FACTORIES_RESOURCE_LOCATION+"]", ex);

       }

   }

}

// 在classpath下所有的META-INF/spring.factories文件中查找org.springframework.boot.autoconfigure.EnableAutoConfiguration的值,并将其封装到一个List中返回,并将其加载到Spring 容器中。

ServletWebServerFactory  加载过程

首先在META-INF/spring.factories文件中可以找到 org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration类,Spring会在项目启动的时候,将其加载到Spring容器中。

@Configuration(proxyBeanMethods=false)

@AutoConfigureOrder(Ordered.HIGHEST_PRECEDENCE)

@ConditionalOnClass(ServletRequest.class)

@ConditionalOnWebApplication(type=Type.SERVLET)

@EnableConfigurationProperties(ServerProperties.class)

@Import({ ServletWebServerFactoryAutoConfiguration.BeanPostProcessorsRegistrar.class,

       ServletWebServerFactoryConfiguration.EmbeddedTomcat.class,

       ServletWebServerFactoryConfiguration.EmbeddedJetty.class,

       ServletWebServerFactoryConfiguration.EmbeddedUndertow.class })

publicclassServletWebServerFactoryAutoConfiguration {

}

ServletWebServerFactoryAutoConfiguration类通过Import的方式将EmbeddedTomcat加载到容器中。

@Configuration(proxyBeanMethods=false)

classServletWebServerFactoryConfiguration {

   @Configuration(proxyBeanMethods=false)

    //根据条件进行加载 tomcatServletWebServerFactory

   @ConditionalOnClass({ Servlet.class, Tomcat.class, UpgradeProtocol.class })

   @ConditionalOnMissingBean(value=ServletWebServerFactory.class, search=SearchStrategy.CURRENT)

   staticclassEmbeddedTomcat {

       @Bean

       TomcatServletWebServerFactorytomcatServletWebServerFactory(

               ObjectProvider<TomcatConnectorCustomizer>connectorCustomizers,

               ObjectProvider<TomcatContextCustomizer>contextCustomizers,

               ObjectProvider<TomcatProtocolHandlerCustomizer<?>>protocolHandlerCustomizers) {

                   TomcatServletWebServerFactoryfactory=newTomcatServletWebServerFactory();

                   factory.getTomcatConnectorCustomizers()

                           .addAll(connectorCustomizers.orderedStream().collect(Collectors.toList()));

                   factory.getTomcatContextCustomizers()

                           .addAll(contextCustomizers.orderedStream().collect(Collectors.toList()));

                   factory.getTomcatProtocolHandlerCustomizers()

                           .addAll(protocolHandlerCustomizers.orderedStream().collect(Collectors.toList()));

                   returnfactory;

       }

   }

}

项目启动需要初始化SpringApplication类。构造方法会先进行环境类型的判断

org.springframework.boot.SpringApplication#SpringApplication(org.springframework.core.io.ResourceLoader, java.lang.Class<?>...)

@SuppressWarnings({ "unchecked", "rawtypes" })

publicSpringApplication(ResourceLoaderresourceLoader, Class<?>... primarySources) {

   this.resourceLoader=resourceLoader;

   Assert.notNull(primarySources, "PrimarySources must not be null");

   this.primarySources=newLinkedHashSet<>(Arrays.asList(primarySources));

   // 判断环境类型

   this.webApplicationType=WebApplicationType.deduceFromClasspath();

   setInitializers((Collection) getSpringFactoriesInstances(ApplicationContextInitializer.class));

   setListeners((Collection) getSpringFactoriesInstances(ApplicationListener.class));

   this.mainApplicationClass=deduceMainApplicationClass();

}

#在通过以下调用过程最终通过createWebServer创建Web服务

org.springframework.boot.SpringApplication#refreshContext

org.springframework.boot.SpringApplication#refresh

org.springframework.context.support.AbstractApplicationContext#refresh

org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext#onRefresh

org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext#createWebServer

privatevoidcreateWebServer() {

   WebServerwebServer=this.webServer;

   ServletContextservletContext=getServletContext();

   if (webServer==null&&servletContext==null) {

       // 获取 web 容器

       ServletWebServerFactoryfactory=getWebServerFactory();

       this.webServer=factory.getWebServer(getSelfInitializer());

   }

   elseif (servletContext!=null) {

       try {

           getSelfInitializer().onStartup(servletContext);

       }

       catch (ServletExceptionex) {

           thrownewApplicationContextException("Cannot initialize servlet context", ex);

       }

   }

   initPropertySources();

}


相关文章
|
1月前
|
Java 开发者 微服务
手写模拟Spring Boot自动配置功能
【11月更文挑战第19天】随着微服务架构的兴起,Spring Boot作为一种快速开发框架,因其简化了Spring应用的初始搭建和开发过程,受到了广大开发者的青睐。自动配置作为Spring Boot的核心特性之一,大大减少了手动配置的工作量,提高了开发效率。
50 0
|
4天前
|
NoSQL Java Redis
Spring Boot 自动配置机制:从原理到自定义
Spring Boot 的自动配置机制通过 `spring.factories` 文件和 `@EnableAutoConfiguration` 注解,根据类路径中的依赖和条件注解自动配置所需的 Bean,大大简化了开发过程。本文深入探讨了自动配置的原理、条件化配置、自定义自动配置以及实际应用案例,帮助开发者更好地理解和利用这一强大特性。
42 14
|
20天前
|
Java 开发者 微服务
Spring Boot 入门:简化 Java Web 开发的强大工具
Spring Boot 是一个开源的 Java 基础框架,用于创建独立、生产级别的基于Spring框架的应用程序。它旨在简化Spring应用的初始搭建以及开发过程。
38 6
Spring Boot 入门:简化 Java Web 开发的强大工具
|
2天前
|
XML Java 数据格式
Spring容器Bean之XML配置方式
通过对以上内容的掌握,开发人员可以灵活地使用Spring的XML配置方式来管理应用程序的Bean,提高代码的模块化和可维护性。
17 6
|
3天前
|
XML Java 数据格式
🌱 深入Spring的心脏:Bean配置的艺术与实践 🌟
本文深入探讨了Spring框架中Bean配置的奥秘,从基本概念到XML配置文件的使用,再到静态工厂方式实例化Bean的详细步骤,通过实际代码示例帮助读者更好地理解和应用Spring的Bean配置。希望对你的Spring开发之旅有所助益。
29 3
|
26天前
|
监控 IDE Java
如何在无需重新启动服务器的情况下在 Spring Boot 上重新加载我的更改?
如何在无需重新启动服务器的情况下在 Spring Boot 上重新加载我的更改?
44 8
|
1月前
|
Java Maven Spring
Java Web 应用中,资源文件的位置和加载方式
在Java Web应用中,资源文件如配置文件、静态文件等通常放置在特定目录下,如WEB-INF或classes。通过类加载器或Servlet上下文路径可实现资源的加载与访问。正确管理资源位置与加载方式对应用的稳定性和可维护性至关重要。
54 6
|
1月前
|
JavaScript 前端开发 开发工具
web项目规范配置(husky、eslint、lint-staged、commit)
通过上述配置,可以确保在Web项目开发过程中自动进行代码质量检查和规范化提交。Husky、ESLint、lint-staged和Commitlint共同作用,使得每次提交代码之前都会自动检查代码风格和语法问题,防止不符合规范的代码进入代码库。这不仅提高了代码质量,还保证了团队协作中的一致性。希望这些配置指南能帮助你建立高效的开发流程。
45 5
|
1月前
|
Java Spring
[Spring]aop的配置与使用
本文介绍了AOP(面向切面编程)的基本概念和核心思想。AOP是Spring框架的核心功能之一,通过动态代理在不修改原代码的情况下注入新功能。文章详细解释了连接点、切入点、通知、切面等关键概念,并列举了前置通知、后置通知、最终通知、异常通知和环绕通知五种通知类型。
37 1
|
22天前
|
XML Java 网络架构
使用 Spring Boot 公开 SOAP Web 服务端点:详细指南
使用 Spring Boot 公开 SOAP Web 服务端点:详细指南
31 0
下一篇
DataWorks