文章挺长,表达不好,希望能有获~~~~
Spring也提供使用注解来注册bean,为什么要用SpringBoot呢?
使用Spring应用,比如SpringMVC还行需要配置ViewResolver、DispatcherServlet,使用Mybatis等也需要进行其他配置。
如下为spring-mybatis配置文件:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd">
<!-- 导入属性配置文件 -->
<context:property-placeholder location="classpath:jdbc.properties" />
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="${jdbc.driverClassName}" />
<property name="url" value="${jdbc.url}" />
</bean>
<!-- 将数据源映射到sqlSessionFactory中 -->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="configLocation" value="classpath:mybatis/mybatis-config.xml" />
<property name="dataSource" ref="dataSource" />
<!--<property name="mapperLocations" value="classpath:mybatis/mapper/*.xml" />-->
</bean>
<!-- SqlSession模板类实例 -->
<bean id="sessionTemplate" class="org.mybatis.spring.SqlSessionTemplate" destroy-method="close">
<constructor-arg index="0" ref="sqlSessionFactory" />
</bean>
<!--======= 事务配置 Begin ================= -->
<!-- 事务管理器(由Spring管理MyBatis的事务) -->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<!-- 关联数据源 -->
<property name="dataSource" ref="dataSource"></property>
</bean>
<!--======= 事务配置 End =================== -->
<!--mapper配置-->
<bean id="kbCityMapper" class="org.mybatis.spring.mapper.MapperFactoryBean">
<property name="mapperInterface" value="com.spring.dao.KbCityMapper" />
<property name="sqlSessionFactory" ref="sqlSessionFactory" />
</bean>
</beans>
SpringBoot进行自动配置不在需用使用者进行这些配置。而且使用SpringBoot也不需要管理Mybatis、log4j、jackson等依赖包的版本问题,SpringBoot使用starter进行依赖管理。
使用SpringBoot只需在application.yml或application.xml添加少量配置,通过@SpringBootApplication即可启动应用。
我们从spring文档看一看
自动装配的意义在于SpringBoot提前为我们初始化了一些东西,从SpringBoot文档中搜索Auto-configuration
对于JSON mapping libraries:

对于Spring MVC:

可以看到有对BeanNameViewResolver的自动配置。
对于模板引擎:

可以看到对Thymeleaf的自动配置,我们只需要引入Thymeleaf依赖就能直接用了,不需要任何配置。
对Reids:

还有对Security,Spring Data JPA,Elasticsearch等等很多很多,SpringBoot都对他们提前进行了一些配置,这样使得我们只需引入其依赖,只需要在application.yml少量配置甚至不需要配置就可以直接使用。
我们从jar包的源码看一看

文档说让我们浏览spring-boot-autoconfigure的源代码,那么我们就看看源码:

先说一下META-INF包下的,我们看一看additional-spring-configuration-metadata.json这个文件里有啥呢?
我们看一看其中server.port:

嗯,他默认值是8080,是不是很熟悉呢?我们进入我们项目的application.properties


那么我们再看看server.servlet.encoding.enabled,server.servlet.jsp.class-name这两个


这回我们知道原来application.properties中的默认值是从additional-spring-configuration-metadata.json这个文件来的呀。
接下来看看spring.factories文件:

里面都是一些AutoConfiguration类的完整类路径,那么我们有了类路径能干啥呢?那当然通过反射创建该类了。那么有这么多自动配置类肯定不会全部加载,那些我们要用到SpringBoot就加载哪些。
spring-autoconfigure-metadata.properties:看其内容,等号左边为类路径或属性,右边或者类路径或者值或者空。应该跟我们平常的properties文件一样的意思吧,为了不将这些配置属性在代码中写死,将其提取出来放到properties文件中。
spring-autoconfigure-metadata.json:只知道name与sourceType,type,sourceMethod建立映射关系,不知道干啥用。或许为了通过name标识值在代码中更清晰易懂吧。
继续向下看:

这里面可以看到很多熟悉的名字,我们以web包为例看一看吧:

这些类大致分为两种,一种AutoConfiguration,一种Properties。
题外话:我们知道SpringBoot扫描静态资源时会在/resources/, /static/, /public/这些路径下。我们看看WebProperties.java

接着我们以WebMvcProperties和WebMvcAutoConfiguration为例看一看吧。
WebMvcProperties:就在这个属性类中完成了webMvc相关属性的初始化工作。
某些属性如下:
private String staticPathPattern = "/**";
public static class Servlet {
/**
* Path of the dispatcher servlet. Setting a custom value for this property is not
* compatible with the PathPatternParser matching strategy.
*/
private String path = "/";
public String getServletMapping() {
if (this.path.equals("") || this.path.equals("/")) {
return "/";
}
if (this.path.endsWith("/")) {
return this.path + "*";
}
return this.path + "/*";
}
}
WebMvcAutoConfiguration:这个类就通过get方法,从上面的properties文件中取值,有了这些属性值,那么就能完成webMvc相关类的初始化工作了!!!
接下来从springbootApplication注解,进入来看看吧

@SpringBootConfiguration:进去看后是一个@Configuration,因此SpringBootConfiguration注解的作用是将其注解的类注册到spring中。
@ComponentScan:组件扫描类,在此包下的被controller,service,component等注解类注册到spring中。
@EnableAutoConfiguration:以下主要分析。

查看@AutoConfigurationPackage:

进入AutoConfigurationPackages.Registrar.class:

debug一下registerBeanDefinitions方法:
通过上面的gif我们可以看到registerBeanDefinitions这个方法应该就是注册我们自己包下所有bean。
接着进入AutoConfigurationImportSelector.class:
进入getAutoConfigurationEntry->getCandidateConfigurations->loadFactoryNames->loadSpringFactories

这里会获取到spring.factories文件,然后加载他,然后循环遍历将其放入result中。

我们debug进入时:

result为一个map,我们以org.springframework.boot.autoconfigure.EnableAutoConfiguration为key,取出那size为130的List<String>。

现在我们从getCandidateConfigurations出来了,configuration的size大小130,然后去重,排除。

在执行getConfigurationClassFilter().filter(configurations);方法前configurations的size还为130。
执行之后:

最终我们加载了这23个配置类。

如何创建自己的starter?

demo project我看了,六年前更新的,使用的springboot1,很老的版本了。这个示例的pom的依赖引入的很繁杂,可以看看人家写的自动配置类,挺齐全的。

三个点:
- pom文件引入springboot依赖(我看guide哥的博客,直接引入这个依赖就能用了。)
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<version>2.4.5</version>
<scope>compile</scope>
</dependency>
- 创建自动配置类,其上有必须
@Configuration,其他约束性注解根据情况添加 - 将这个自动配置类写到,spring.factories文件
终于完结。
😄
