SpringBoot


文章来源:https://www.bilibili.com/video/BV1Et411Y7tQ?p=12

springboot的产生背景?

单体应用逐渐变得臃肿,牵一发而动全身。
大量的xml文件
集合第三方框架问题

spring boot pom依赖jar包的

  • spring-boot-starter-parent : spring boot 版本中心
  • spring-boot-starter-web:场景启动器 导入web模块正常运行依赖的组件
  • spring将所有功能场景抽取出来:
    spring-boot-starter-** jpa、javamail 等

@SpringBootApplication

Spring Boot 启动注解思维图

image

@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 @interface SpringBootApplication {

@SpringBootConfiguration:

这是一个springBoot配置类

  • @Configuration:配置类上标注这个注解

配置类-配置文件:配置类也是容器中的组件@Component

@EnableAutoConfiguration:

开启自动配置功能

@AutoConfigurationPackage
@Import({AutoConfigurationImportSelector.class})
public @interface EnableAutoConfiguration {
  • @AutoConfigurationPackage:自动配置包 将启动类所在包及以下所有组件扫描到容器中

@Import({Registrar.class}):spring底层注解 导入组件

static class Registrar implements ImportBeanDefinitionRegistrar, DeterminableImports {
        Registrar() {
        }

        //将启动类所在包及以下所有组件扫描到容器中
        public void registerBeanDefinitions(AnnotationMetadata metadata, BeanDefinitionRegistry registry) {
            AutoConfigurationPackages.register(registry, (String[])(new AutoConfigurationPackages.PackageImports(metadata)).getPackageNames().toArray(new String[0]));
        }

        public Set<Object> determineImports(AnnotationMetadata metadata) {
            return Collections.singleton(new AutoConfigurationPackages.PackageImports(metadata));
        }
    }

  • @Import({AutoConfigurationImportSelector.class}):导入组件选择器

将所有需求的组件以全类名的方式返回,这些组件会被添加到容易中。


//annotationMetadata 元信息
  protected AutoConfigurationImportSelector.AutoConfigurationEntry getAutoConfigurationEntry(AnnotationMetadata annotationMetadata) {
        if (!this.isEnabled(annotationMetadata)) {
        //不开启自动装配 返回空
            return EMPTY_ENTRY;
        } else {
            AnnotationAttributes attributes = this.getAttributes(annotationMetadata);
            List<String> configurations = this.getCandidateConfigurations(annotationMetadata, attributes);
            configurations = this.removeDuplicates(configurations);
            Set<String> exclusions = this.getExclusions(annotationMetadata, attributes);
            this.checkExcludedClasses(configurations, exclusions);
            configurations.removeAll(exclusions);
            configurations = this.getConfigurationClassFilter().filter(configurations);
            this.fireAutoConfigurationImportEvents(configurations, exclusions);
            return new AutoConfigurationImportSelector.AutoConfigurationEntry(configurations, exclusions);
        }
    }

会给容器中导入很多自动配置类(XXautoconfig)

image

有了spring自动配置的类,我们就不用自己去做了

那么具体是如何加载的呢?看下面方法

  //读取项目下的配置类 一般为 spring.factories
List<String> configurations = SpringFactoriesLoader.loadFactoryNames(this.getSpringFactoriesLoaderFactoryClass(), this.getBeanClassLoader());

Spring 在启动的时候从类路径下META-INF/spring.factories获取EnableAutoConfiguration指定的值,将自动配置类导入容器中。

快速创建SpringBoot工程

IDEA-NEW-Spring initializr-web 就可以创建一个简单的SpringBoot项目了

  • 启动类生成
  • resources
    static:静态资源
    templates:所有模板页面(默认不支持jsp 需要手动配置 )
  • application.properties :springboot 应用配置文件

配置文件

  • SpringBoot全局配置文件

application.properties
application.yml

配置文件作用:修改SpringBoot自动配置默认值

  • YAML
    以数据为中心,比XML、json更适合做配置文件
server:
  port: 7949

YML语法

  1. 基本语法
  • K:(空格)V 表示一对键值对 空格必须有
  • 以空格缩进来控制层级关系:只要是左对齐的一列数据,都是一类数据
swagger:
  version:
  enabled: true
  base-path: /**
  • 属性和值也是大小写敏感的
  1. 值的写法
  • 字面量:普通的值(数字、字符串、Boolean)

字符串默认不加单引号或双引号

双引号:不会转义 zhang\nLi -> zhang 换行Li

单引号:会 zhang\nLi ->zhang\nLi

  • 对象:
swagger:
  version:
  enabled: true
  base-path: /**

行内写法

swagger: {version: 0.1,enabled: tre}
  • 集合:

用- 表示数据组中的一个元素

swagger:
 - version:
 - enabled: true
 - base-path: /**

行内写法

swagger: [version,enabled]

配置文件值获取

  • @configurationProperties(prefix=“spring.data”)
    供 prefix 和 locations 两个属性指定属性文件的来源和属性的前缀
  • @value(${apring.data})
比较@configurationProperties@value
功能批量单个
松散绑定(表示驼峰式、下划线(_)、短横线(-))yesno
Spelnoyes
Jsr303数据校验(@validated)yesno
复杂类型封装yesno

只获取配置文件的某项值,使用@value
获取全部数据使用@ConfigurationProperties

@PropertySource&@ImportResource

  • @PropertySource:获取指定配置文件
@Component
//默认从全局文件中获取配置值
@ConfigurationProperties(prefix = "person")
//@Validated
@PropertySource(value = {"classpath:person.properties"})
public class Person {
    //人的属性
    //@Email
    private String myName;

    private int age;

    private String sex;
  • @ImportResource:导入Spring的配置文件。

创建beans.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
    <bean id="helloService" class="cn.zhangyu.service.HelloService"></bean>
</beans>

@ImportResource标注在配置类上

@ImportResource(locations = {"classpath:beans.xml"})
@SpringBootApplication
public class Springboot1Application {

	public static void main(String[] args) {
		SpringApplication.run(Springboot1Application.class, args);
	}
}
  • @Bean
  @Configuration
  public class MyAppConfig {
      //将方法的返回值添加到容器中;容器中这个组件默认的id就是方法名
      //也可以指定别名 name='111'
      @Bean"helloService1"public HelloService helloService(){
          System.out.println("配置类@Bean给容器中添加组件了...");
          return new HelloService();
      }
  }

配置文件占位符

person:
  name: ${random.value}
  age: ${person.name:15}_${random.int}_dog

Person{name='你好', age='你好_-1045460532_dog'}
  • 随机数
  • 占位符获取之前配置的值,如果没有使用:指定默认值 ${person:height:15}
  • 可以使用之前配置属性作为后面配置属性的值

Profile

  • 多profile

配置文件起名application-{profile}.properties/yml

application-dev.properties

application-prod.properties

默认使用application.properties

  • yml支持文档块模式
  server:
    port: 8081
  spring:
    profiles:
      active: prod //通过这个控制采取哪个配置
  ---
  server:
    port: 8083
  spring:
    profiles: dev
  ---
  server:
    port: 8084
  spring:
    spring: prod
  • 指定激活
  1. 指定配置,在默认配置文件中指定Spring.profile.active=dev

spring.profiles.active=prod//通过这个调用

  1. 命令行激活
   java -jar xxx.jar **--spring.profiles.active=dev**
   

idea 可以直接在 edit configuration 设置

  1. 虚拟机参数
    vm options= -Dspring.profiles.active=dev

配置文件加载位置

1. 按照优先级从高到低,高优先级会覆盖低优先级内容,形成互补配置

  • file:./config/ (当前项目路径config目录下);
  • file:./ (当前项目路径下);
  • classpath:/config/ (类路径config目录下);
  • classpath:/ (类路径config下).

image

源码展示

public class ConfigFileApplicationListener implements EnvironmentPostProcessor, SmartApplicationListener, Ordered {
    private static final String DEFAULT_PROPERTIES = "defaultProperties";
    private static final String DEFAULT_SEARCH_LOCATIONS = "classpath:/,classpath:/config/,file:./,file:./config/";
  1. spring.config.location
    项目打包后,使用命令行参数来指定配置文件位置 ,会和项目中的配置文件形成互补。
  • spring.config.location= 这个配置决定了会从哪些地方去加载配置文件,如果你修改了它。那么就会覆盖掉默认的配置。只会从你指定的位置去加载配置文件。
  • spring.config.additional-location=这个配置也可以达到相同的目的,修改springboot加载配置文件的目录,但是它不会覆盖默认的,只会新增指定的路径。
		//CONFIG_LOCATION_PROPERTY=spring.config.location
		//CONFIG_ADDITIONAL_LOCATION_PROPERTY = "spring.config.additional-location"
		private Set<String> getSearchLocations() {
			if (this.environment.containsProperty(CONFIG_LOCATION_PROPERTY)) {
				return getSearchLocations(CONFIG_LOCATION_PROPERTY);
			}
			Set<String> locations = getSearchLocations(
					CONFIG_ADDITIONAL_LOCATION_PROPERTY);
			locations.addAll(
					asResolvedSet(ConfigFileApplicationListener.this.searchLocations,
							DEFAULT_SEARCH_LOCATIONS));
			return locations;
		}

外部配置加载顺序(不太重要 略过)

实际工作中可以查阅资料使用

自动配置原理

配置文件属性参考官方文档

  1. spring启动时加载主配置类,开启自动配置功能@EnableAutoConfiguration
  2. @EnableAutoConfiguration利用AutoConfigurationImportSelector给容器导入组件。
类路径下spring.factories里面配置的所有EnableAutoConfiguration加入容器

org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration,\
org.springframework.boot.autoconfigure.aop.AopAutoConfiguration,\
org.springframework.boot.autoconfigure.amqp.RabbitAutoConfiguration,\
org.springframework.boot.autoconfigure.batch.BatchAutoConfiguration,\
org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration,\
org.springframework.boot.autoconfigure.cassandra.CassandraAutoConfiguration,\
org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration,\
org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration,\
org.springframework.boot.autoconfigure.context.MessageSourceAutoConfiguration,\
org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration,\

more.....

每一个xxxAutoConfiguration都是容器中的一个组件,以此来实现自动配置

  1. 以HttpEncodingAutoConfiguration来解释自动配置原理
//配置类
@Configuration(proxyBeanMethods = false)
//启用指定类的@ConfigurationProperties
@EnableConfigurationProperties(ServerProperties.class)

//spring底层注解@Conditional 的作用是按照一定的条件进行判断,满足条件给容器注册bean

//判断当前应用是否位web应用
@ConditionalOnWebApplication(type = ConditionalOnWebApplication.Type.SERVLET)

//当前项目是否有这个类 
@ConditionalOnClass(CharacterEncodingFilter.class)

//是否存在某个配置 server.servlet.encoding=enabled 如果不存在 默认为存在

@ConditionalOnProperty(prefix = "server.servlet.encoding", value = "enabled", matchIfMissing = true)
public class HttpEncodingAutoConfiguration {

根据当前不同条件判断,决定配置类是否生效

从对应的properties获取属性,使配置类生效。

一旦配置类生效,会给容器中加组件

    //既spring boot默认配置文件
	private final Encoding properties;



	public HttpEncodingAutoConfiguration(ServerProperties properties) {
		this.properties = properties.getServlet().getEncoding();
	}

    //添加组件
	@Bean
	@ConditionalOnMissingBean
	public CharacterEncodingFilter characterEncodingFilter() {
		CharacterEncodingFilter filter = new OrderedCharacterEncodingFilter();
		filter.setEncoding(this.properties.getCharset().name());
		filter.setForceRequestEncoding(this.properties.shouldForce(Encoding.Type.REQUEST));
		filter.setForceResponseEncoding(this.properties.shouldForce(Encoding.Type.RESPONSE));
		return filter;
	}

总结

  1. spring启动会加载大量配置类
  2. 我们需要的功能spring是否有默认的自动配置类。
  3. 如果没有 需要在properties配置相关属性,spring从而加载相对应的配置类及其组件。

@Conditional派生注解

作用:只有@Conditional指定的条件生效,才会向容器中添加组件

@Conditional扩展注解作用(判断是否满足当前指定条件)
@ConditionalOnJava系统的java版本是否符合要求
@ConditionalOnBean容器中存在指定Bean;
@ConditionalOnMissingBean容器中不存在指定Bean;
@ConditionalOnExpression满足SpEL表达式指定
@ConditionalOnClass系统中有指定的类
@ConditionalOnMissingClass系统中没有指定的类
@ConditionalOnSingleCandidate容器中只有一个指定的Bean,或者这个Bean是首选Bean
@ConditionalOnProperty系统中指定的属性是否有指定的值
@ConditionalOnResource类路径下是否存在指定资源文件
@ConditionalOnWebApplication当前是web环境
@ConditionalOnNotWebApplication当前不是web环境
@ConditionalOnJndiJNDI存在指定项

怎么知道那些配置类是自动生效?

debug=true



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值