2、Spring Boot配置

2、Spring Boot配置,第1张

概述1.配置文件 SpringBoot使用一个全局的配置文件,配置文件名是固定的; •application.properties •application.yml 配置文件的作用:修改SpringBoo 1.配置文件

  SpringBoot使用一个全局的配置文件,配置文件名是固定的;

    •application.propertIEs

    •application.yml

  配置文件的作用:修改SpringBoot自动配置的默认值;SpringBoot在底层都给我们自动配置好;

  YAML(YAML Ain't MarkuP Language):以数据为中心,比Json、xml等更适合做配置文件;以前的配置文件;大多都使用的是xxxx.xml文件;

范例:YAML配置例子

server:

  port: 8081

范例:XML配置

<server>

    <port>8081</port>

</server>

2.YAML语法[1].基本语法

语法: K: V:表示一对键值对(: v之间有个空格)

  空格的缩进来控制层级关系;只要是左对齐的一列数据,都是同一个层级的

server:

    port: 8081

    path: /hello

  属性和值也是大小写敏感;

[2].值的写法(1).普通的值(数字,字符串,布尔)

​  k: v:字面直接来写;

  字符串默认不用加上单引号或者双引号;

    "":双引号;不会转义字符串里面的特殊字符;特殊字符会作为本身想表示的意思

      name: "zhangsan \n lisi":输出;zhangsan 换行  lisi

    '':单引号;会转义特殊字符,特殊字符最终只是一个普通的字符串数据

      name: ‘zhangsan \n lisi’:输出;zhangsan \n  lisi

(2).对象、Map(属性和值)(键值对)

  k: v:在下一行来写对象的属性和值的关系;注意缩进

  对象还是k: v的方式

frIEnds:

    lastname: zhangsan

    age: 20

  行内写法:

frIEnds: {lastname: zhangsan,age: 18}

(3).数组(List、Set)

  - 值表示数组中的一个元素

pets:

  - cat

  - dog

  - pig

  行内写法

pets: [cat,dog,pig]

[3].配置文件值注入

application.yml

server:

  port: 8081

 

 

person:

  lastname: zhangsan

  age: 18

  boss: false

  birth: 2020/1/1

  maps: {k1: v1,k2: 12}

  Lists:

    - lisi

    - zhaoliu

    - zhangsan

  dog:

    name: 狗狗

    age: 2

javaBean:

/**

 *  将配置文件中配置的每一个属性的值,映射到这个组件中

 *  @ConfigurationPropertIEs: 告诉SpringBoot将本类中的所有属性和配置文件中相关的配置进行绑定 默认从全局配置文件中获取值

 *      prefix="person":配置文件中将下面的所有属性进行一一映射

 */

@Component

@ConfigurationPropertIEs(prefix = "person")

public class Person {

 

    private String lastname;

    private Integer age;

    private Boolean boss;

    private Date birth;

 

    private Map<String,Object> maps;

    private List<Object> Lists;

    private Dog dog;

  可以导入配置文件处理器,以后编写配置就有提示

<!-- 可以导入配置文件处理器,配置文件进行白丁会有提示 -->

<dependency>

   <groupID>org.springframework.boot</groupID>

   <artifactID>spring-boot-configuration-processor</artifactID>

   <version>2.1.6.RELEASE</version>

   <optional>true</optional>

</dependency>

(1).propertIEs配置文件在IDea中默认utf-8可能会乱码

 

(2).@Value获取值和@ConfigurationPropertIEs获取值比较

  配置文件yml还是propertIEs以上方式都能获取到值;

如何选择以上方式:

  如果说,我们只是在某个业务逻辑中需要获取一下配置文件中的某项值,使用@Value;

  如果说,我们专门编写了一个javaBean来和配置文件进行映射,我们就直接使用@ConfigurationPropertIEs;

(3).配置文件注入值数据校验

@Component

@ConfigurationPropertIEs(prefix = "person")

@ValIDated

public class Person {

 

    /**

     * <bean >

     *      <property name="lastname" value="字面量/${key}从环境变量、配置文件中获取值/#{SpEL}"></property>

     * <bean/>

     */

 

   //lastname必须是邮箱格式

    @Email

    //@Value("${person.last-name}")

    private String lastname;

    //@Value("#{11*2}")

    private Integer age;

    //@Value("true")

    private Boolean boss;

 

    private Date birth;

    private Map<String,Object> maps;

    private List<Object> Lists;

    private Dog dog;

(4).@PropertySource&@importResource&@Bean

@PropertySource:加载指定的配置文件;

/**

 *  将配置文件中配置的每一个属性的值,映射到这个组件中

 *  @ConfigurationPropertIEs: 告诉SpringBoot将本类中的所有属性和配置文件中相关的配置进行绑定 默认从全局配置文件中获取值

 *      prefix="person":配置文件中将下面的所有属性进行一一映射

 */

@PropertySource(value={"classpath:person.propertIEs"})

@Component

@ConfigurationPropertIEs(prefix = "person")

//@ValIDated

public class Person {

 

    /**

     *  <bean >

     *      <propertIEs name="lastname" value="字面量/${key}从环境变量、配置文件中获取值/#{SpEL}"></propertIEs>

     *  </bean>

     */

//    @Value("${person.last-name}")

    private String lastname;

//    @Value("#{11*2}")

    private Integer age;

//    @Value("true")

    private Boolean boss;

    private Date birth;

 

    private Map<String,Object> maps;

    private List<Object> Lists;

    private Dog dog;

@importResource:导入Spring的配置文件,让配置文件里面的内容生效;

  Spring Boot里面没有Spring的配置文件,我们自己编写的配置文件,也不能自动识别;

  想让Spring的配置文件生效,加载进来;@importResource标注在一个配置类上

@importResource(locations = {"classpath:beans.xml"})

导入Spring的配置文件让其生效

不编写Spring的配置文件

<?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" ></bean>

 

</beans>

SpringBoot推荐给容器中添加组件的方式;推荐使用全注解的方式

1)、配置类@Configuration------>Spring配置文件

2)、使用@Bean给容器中添加组件

/**

 * @Configuration:指明当前类是一个配置类;就是来替代之前的Spring配置文件

 *

 * 在配置文件中用<bean><bean/>标签添加组件

 *

 */

@Configuration

public class MyAppConfig {

 

    //将方法的返回值添加到容器中;容器中这个组件默认的ID就是方法名

    @Bean

    public HelloService helloService02(){

        System.out.println("配置类@Bean给容器中添加组件了...");

        return new HelloService();

    }

}

[4].配置文件占位符

 

# IDea配置文件默认为utf-8

#����Person��ֵ

person.last-name=张三${random.uuID}

person.age=${random.int}

person.birth=2020/1/1

person.boss=false

person.maps.k1=v1

person.maps.k2=14

person.Lists=a,b,c

person.dog.name=${person.last-name}_dog

person.dog.age=15

[5].Profile

在主配置文件编写的时候,文件名可以是   application-{profile}.propertIEs/yml

默认使用application.propertIEs的配置;

(1).在配置文件中指定开发环境

application.propertIEs

server.port=8081

spring.profiles.active=dev

application-dev.propertIEs

server.port=8083

(2).yml文档快

  yml支持多文档块方式

 

server:

  port: 8081

spring:

  profiles:

    active: prod

---

 

server:

  port: 8083

spring:

  profiles: dev

---

 

server:

  port: 8088

spring:

  profiles: prod

(3).激活指定profile1).在配置文件中指定spring.profiles.active=dev2).命令行

(1.Program arguments

 

(2.CMD

java -jar spring-boot-02-config-0.0.1-SNAPSHOT.jar --spring.profiles.active=dev

 

(3.虚拟机参数

-Dspring.profiles.active=dev

 

[6].配置文件加载位置

springboot 启动会扫描以下位置的application.propertIEs或者application.yml文件作为Spring boot的默认配置文件

–file:./config/

–file:./

–classpath:/config/

–classpath:/

优先级由高到底,高优先级的配置会覆盖低优先级的配置;

SpringBoot会从这四个位置全部加载主配置文件;它们成互补配置;

 

我们还可以通过spring.config.location来改变默认的配置文件位置

  项目打包好以后,我们可以使用命令行参数的形式,启动项目的时候来指定配置文件的新位置;指定配置文件和默认加载的这些配置文件共同起作用形成互补配置;

  通过packet生成jar包

 

 

D:\DevCode\spring-boot-02-config-02\target>java -jar spring-boot-02-config-02-0.0.1-SNAPSHOT.jar --spring.config.location=G:/application.propertIEs

[7].外部配置加载顺序

  https://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#boot-features-external-config

 

SpringBoot也可以从以下位置加载配置; 优先级从高到低;高优先级的配置覆盖低优先级的配置,所有的配置会形成互补配置

(1).命令行

  多个配置用空格分开; --配置项=值

java -jar spring-boot-02-config-02-0.0.1-SNAPSHOT.jar --server.port=8086  --server.context-path=/hello

(2)..来自java:comp/env的JNDI属性

(3),Java系统属性(System.getPropertIEs())

(4). *** 作系统环境变量

(5).RandomValuePropertySource配置的random.*属性值

jar包外向jar包内进行寻找

优先加载带profile

(6).jar包外部的application-{profile}.propertIEs或application.yml(带spring.profile)配置文件

(7).jar包内部的application-{profile}.propertIEs或application.yml(带spring.profile)配置文件

加载不带profile

(8).jar包外部的application.propertIEs或application.yml(不带spring.profile)配置文件

(9).jar包内部的application.propertIEs或application.yml(不带spring.profile)配置文件

 

(10).@Configuration注解类上的@PropertySource

(11).通过SpringApplication.setDefaultPropertIEs指定的默认属性

所有支持的配置加载来源:参考官方文档

[8].Spring自动配置原理

配置文件到底能写什么?怎么写?自动配置原理;

配置文件能够配置的属性参照

(1).自动配置原理1).Spring启动的时候会自动加载主配置类,开启了自动配置功能@SpringBootApplication

 

2).@EnableautoConfiguration 作用

 

利用autoConfigurationimportSelector给容器中导入一些组件

 

查看selectimports()方法的内容

 

获取候选的配置

return StringUtils.toStringArray(autoConfigurationEntry.getConfigurations());

 

SpringFactorIEsLoader.loadFactorynames()

  

扫描所有jar包类路径下  meta-inf/spring.factorIEs

把扫描到的这些文件的内容包装成propertIEs对象

 

propertIEs中获取到EnableautoConfiguration.class类(类名)对应的值,然后把他们添加在容器中

 

将类路径下  meta-inf/spring.factorIEs 里面配置的所有EnableautoConfiguration的值加入到了容器中;

 

@H_616_1419@

# auto Configure

org.springframework.boot.autoconfigure.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,\

org.springframework.boot.autoconfigure.couchbase.CouchbaseautoConfiguration,\

org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationautoConfiguration,\

org.springframework.boot.autoconfigure.data.cassandra.CassandraDataautoConfiguration,\

org.springframework.boot.autoconfigure.data.cassandra.CassandraReactiveDataautoConfiguration,\

org.springframework.boot.autoconfigure.data.cassandra.CassandraReactiveRepositorIEsautoConfiguration,\

org.springframework.boot.autoconfigure.data.cassandra.CassandraRepositorIEsautoConfiguration,\

org.springframework.boot.autoconfigure.data.couchbase.CouchbaseDataautoConfiguration,\

org.springframework.boot.autoconfigure.data.couchbase.CouchbaseReactiveDataautoConfiguration,\

org.springframework.boot.autoconfigure.data.couchbase.CouchbaseReactiveRepositorIEsautoConfiguration,\

org.springframework.boot.autoconfigure.data.couchbase.CouchbaseRepositorIEsautoConfiguration,\

org.springframework.boot.autoconfigure.data.elasticsearch.ElasticsearchDataautoConfiguration,\

org.springframework.boot.autoconfigure.data.elasticsearch.ElasticsearchRepositorIEsautoConfiguration,\

org.springframework.boot.autoconfigure.data.elasticsearch.ReactiveElasticsearchRepositorIEsautoConfiguration,\

org.springframework.boot.autoconfigure.data.elasticsearch.ReactiveElasticsearchRestClIEntautoConfiguration,\

org.springframework.boot.autoconfigure.data.jdbc.JdbcRepositorIEsautoConfiguration,\

org.springframework.boot.autoconfigure.data.jpa.JpaRepositorIEsautoConfiguration,\

org.springframework.boot.autoconfigure.data.ldap.LdapRepositorIEsautoConfiguration,\

org.springframework.boot.autoconfigure.data.mongo.MongoDataautoConfiguration,\

org.springframework.boot.autoconfigure.data.mongo.MongoReactiveDataautoConfiguration,\

org.springframework.boot.autoconfigure.data.mongo.MongoReactiveRepositorIEsautoConfiguration,\

org.springframework.boot.autoconfigure.data.mongo.MongoRepositorIEsautoConfiguration,\

org.springframework.boot.autoconfigure.data.neo4j.Neo4jDataautoConfiguration,\

org.springframework.boot.autoconfigure.data.neo4j.Neo4jRepositorIEsautoConfiguration,\

org.springframework.boot.autoconfigure.data.solr.solrRepositorIEsautoConfiguration,\

org.springframework.boot.autoconfigure.data.r2dbc.R2dbcdataautoConfiguration,\

org.springframework.boot.autoconfigure.data.r2dbc.R2dbcRepositorIEsautoConfiguration,\

org.springframework.boot.autoconfigure.data.r2dbc.R2dbcTransactionManagerautoConfiguration,\

org.springframework.boot.autoconfigure.data.redis.RedisautoConfiguration,\

org.springframework.boot.autoconfigure.data.redis.RedisReactiveautoConfiguration,\

org.springframework.boot.autoconfigure.data.redis.RedisRepositorIEsautoConfiguration,\

org.springframework.boot.autoconfigure.data.rest.RepositoryRestMvcautoConfiguration,\

org.springframework.boot.autoconfigure.data.web.SpringDataWebautoConfiguration,\

org.springframework.boot.autoconfigure.elasticsearch.ElasticsearchRestClIEntautoConfiguration,\

org.springframework.boot.autoconfigure.flyway.FlywayautoConfiguration,\

org.springframework.boot.autoconfigure.freemarker.FreeMarkerautoConfiguration,\

org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateautoConfiguration,\

org.springframework.boot.autoconfigure.gson.GsonautoConfiguration,\

org.springframework.boot.autoconfigure.h2.H2ConsoleautoConfiguration,\

org.springframework.boot.autoconfigure.hateoas.HypermediaautoConfiguration,\

org.springframework.boot.autoconfigure.hazelcast.HazelcastautoConfiguration,\

org.springframework.boot.autoconfigure.hazelcast.HazelcastJpaDependencyautoConfiguration,\

org.springframework.boot.autoconfigure.http.httpMessageConvertersautoConfiguration,\

org.springframework.boot.autoconfigure.http.codec.CodecsautoConfiguration,\

org.springframework.boot.autoconfigure.influx.InfluxDbautoConfiguration,\

org.springframework.boot.autoconfigure.info.ProjectInfoautoConfiguration,\

org.springframework.boot.autoconfigure.integration.IntegrationautoConfiguration,\

org.springframework.boot.autoconfigure.jackson.JacksonautoConfiguration,\

org.springframework.boot.autoconfigure.jdbc.DataSourceautoConfiguration,\

org.springframework.boot.autoconfigure.jdbc.JdbcTemplateautoConfiguration,\

org.springframework.boot.autoconfigure.jdbc.JndIDataSourceautoConfiguration,\

org.springframework.boot.autoconfigure.jdbc.XADataSourceautoConfiguration,\

org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerautoConfiguration,\

org.springframework.boot.autoconfigure.jms.JmsautoConfiguration,\

org.springframework.boot.autoconfigure.jmx.JmxautoConfiguration,\

org.springframework.boot.autoconfigure.jms.JndiConnectionFactoryautoConfiguration,\

org.springframework.boot.autoconfigure.jms.activemq.ActiveMQautoConfiguration,\

org.springframework.boot.autoconfigure.jms.artemis.ArtemisautoConfiguration,\

org.springframework.boot.autoconfigure.jersey.JerseyautoConfiguration,\

org.springframework.boot.autoconfigure.jooq.JooqautoConfiguration,\

org.springframework.boot.autoconfigure.Jsonb.JsonbautoConfiguration,\

org.springframework.boot.autoconfigure.kafka.KafkaautoConfiguration,\

org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityautoConfiguration,\

org.springframework.boot.autoconfigure.ldap.embedded.EmbeddedLdapautoConfiguration,\

org.springframework.boot.autoconfigure.ldap.LdapautoConfiguration,\

org.springframework.boot.autoconfigure.liquibase.liquibaseautoConfiguration,\

org.springframework.boot.autoconfigure.mail.MailSenderautoConfiguration,\

org.springframework.boot.autoconfigure.mail.MailSenderValIDatorautoConfiguration,\

org.springframework.boot.autoconfigure.mongo.embedded.EmbeddedMongoautoConfiguration,\

org.springframework.boot.autoconfigure.mongo.MongoautoConfiguration,\

org.springframework.boot.autoconfigure.mongo.MongoReactiveautoConfiguration,\

org.springframework.boot.autoconfigure.mustache.MustacheautoConfiguration,\

org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaautoConfiguration,\

org.springframework.boot.autoconfigure.quartz.QuartzautoConfiguration,\

org.springframework.boot.autoconfigure.r2dbc.R2dbcautoConfiguration,\

org.springframework.boot.autoconfigure.rsocket.RSocketMessagingautoConfiguration,\

org.springframework.boot.autoconfigure.rsocket.RSocketRequesterautoConfiguration,\

org.springframework.boot.autoconfigure.rsocket.RSocketServerautoConfiguration,\

org.springframework.boot.autoconfigure.rsocket.RSocketStrategIEsautoConfiguration,\

org.springframework.boot.autoconfigure.security.servlet.SecurityautoConfiguration,\

org.springframework.boot.autoconfigure.security.servlet.UserDetailsServiceautoConfiguration,\

org.springframework.boot.autoconfigure.security.servlet.SecurityFilterautoConfiguration,\

org.springframework.boot.autoconfigure.security.reactive.ReactiveSecurityautoConfiguration,\

org.springframework.boot.autoconfigure.security.reactive.ReactiveUserDetailsServiceautoConfiguration,\

org.springframework.boot.autoconfigure.security.rsocket.RSocketSecurityautoConfiguration,\

org.springframework.boot.autoconfigure.security.saml2.Saml2RelyingPartyautoConfiguration,\

org.springframework.boot.autoconfigure.sendgrID.SendGrIDautoConfiguration,\

org.springframework.boot.autoconfigure.session.SessionautoConfiguration,\

org.springframework.boot.autoconfigure.security.oauth2.clIEnt.servlet.oauth2clientautoConfiguration,\

org.springframework.boot.autoconfigure.security.oauth2.clIEnt.reactive.Reactiveoauth2clientautoConfiguration,\

org.springframework.boot.autoconfigure.security.oauth2.resource.servlet.OAuth2ResourceServerautoConfiguration,\

org.springframework.boot.autoconfigure.security.oauth2.resource.reactive.ReactiveOAuth2ResourceServerautoConfiguration,\

org.springframework.boot.autoconfigure.solr.solrautoConfiguration,\

org.springframework.boot.autoconfigure.task.TaskExecutionautoConfiguration,\

org.springframework.boot.autoconfigure.task.TaskSchedulingautoConfiguration,\

org.springframework.boot.autoconfigure.thymeleaf.ThymeleafautoConfiguration,\

org.springframework.boot.autoconfigure.transaction.TransactionautoConfiguration,\

org.springframework.boot.autoconfigure.transaction.jta.JtaautoConfiguration,\

org.springframework.boot.autoconfigure.valIDation.ValIDationautoConfiguration,\

org.springframework.boot.autoconfigure.web.clIEnt.RestTemplateautoConfiguration,\

org.springframework.boot.autoconfigure.web.embedded.EmbeddeDWebServerFactoryCustomizerautoConfiguration,\

org.springframework.boot.autoconfigure.web.reactive.httpHandlerautoConfiguration,\

org.springframework.boot.autoconfigure.web.reactive.ReactiveWebServerFactoryautoConfiguration,\

org.springframework.boot.autoconfigure.web.reactive.WebFluxautoConfiguration,\

org.springframework.boot.autoconfigure.web.reactive.error.ErrorWebFluxautoConfiguration,\

org.springframework.boot.autoconfigure.web.reactive.function.clIEnt.ClIEnthttpConnectorautoConfiguration,\

org.springframework.boot.autoconfigure.web.reactive.function.clIEnt.WebClIEntautoConfiguration,\

org.springframework.boot.autoconfigure.web.servlet.dispatcherServletautoConfiguration,\

org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryautoConfiguration,\

org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcautoConfiguration,\

org.springframework.boot.autoconfigure.web.servlet.httpEnCodingautoConfiguration,\

org.springframework.boot.autoconfigure.web.servlet.MultipartautoConfiguration,\

org.springframework.boot.autoconfigure.web.servlet.WebMvcautoConfiguration,\

org.springframework.boot.autoconfigure.websocket.reactive.WebSocketReactiveautoConfiguration,\

org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletautoConfiguration,\

org.springframework.boot.autoconfigure.websocket.servlet.WebSocketMessagingautoConfiguration,\

org.springframework.boot.autoconfigure.webservices.WebServicesautoConfiguration,\

org.springframework.boot.autoconfigure.webservices.clIEnt.webservicetemplateautoConfiguration

  每个这样的  xxxautoConfiguration类都是容器中的一个组件,都加入到容器中;用他们来做自动配置;

3).每一个自动配置类进行自动配置功能

4).以httpEnCodingautoConfiguration(http编码自动配置)为例解释自动配置原理

@Configuration   //表示这是一个配置类,以前编写的配置文件一样,也可以给容器中添加组件

@EnableConfigurationPropertIEs(httpEnCodingPropertIEs.class)  //启动指定类的ConfigurationPropertIEs功能;将配置文件中对应的值和httpEnCodingPropertIEs绑定起来;并把httpEnCodingPropertIEs加入到ioc容器中

 

@ConditionalOnWebApplication //Spring底层@Conditional注解(Spring注解版),根据不同的条件,如果满足指定的条件,整个配置类里面的配置就会生效;    判断当前应用是否是web应用,如果是,当前配置类生效

 

@ConditionalOnClass(CharacterEnCodingFilter.class)  //判断当前项目有没有这个类CharacterEnCodingFilterSpringMVC中进行乱码解决的过滤器;

 

@ConditionalOnProperty(prefix = "spring.http.enCoding",value = "enabled",matchIfMissing = true)  //判断配置文件中是否存在某个配置  spring.http.enCoding.enabled;如果不存在,判断也是成立的

//即使我们配置文件中不配置pring.http.enCoding.enabled=true,也是默认生效的;

public class httpEnCodingautoConfiguration {

  

   //他已经和SpringBoot的配置文件映射了

   private final httpEnCodingPropertIEs propertIEs;

  

   //只有一个有参构造器的情况下,参数的值就会从容器中拿

   public httpEnCodingautoConfiguration(httpEnCodingPropertIEs propertIEs) {

this.propertIEs = propertIEs;

}

  

    @Bean   //给容器中添加一个组件,这个组件的某些值需要从propertIEs中获取

@ConditionalOnMissingBean(CharacterEnCodingFilter.class) //判断容器没有这个组件?

public CharacterEnCodingFilter characterEnCodingFilter() {

  CharacterEnCodingFilter filter = new OrderedCharacterEnCodingFilter();

  filter.setEnCoding(this.propertIEs.getCharset().name());

  filter.setForceRequestEnCoding(this.propertIEs.shouldForce(Type.REQUEST));

  filter.setForceResponseEnCoding(this.propertIEs.shouldForce(Type.RESPONSE));

  return filter;

}

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

  一但这个配置类生效;这个配置类就会给容器中添加各种组件;这些组件的属性是从对应的propertIEs类中获取的,这些类里面的每一个属性又是和配置文件绑定的;

5).所有在配置文件中能配置的属性都是在xxxxPropertIEs类中封装者‘;配置文件能配置什么就可以参照某个功能对应的这个属性类

@ConfigurationPropertIEs(prefix = "spring.http.enCoding")  //从配置文件中获取指定的值和bean的属性进行绑定

public class httpEnCodingPropertIEs {

 

   public static final Charset DEFAulT_CHARSET = Charset.forname("UTF-8");

springboot精髓:

1)、SpringBoot启动会加载大量的自动配置类

2)、我们看我们需要的功能有没有SpringBoot默认写好的自动配置类;

3)、我们再来看这个自动配置类中到底配置了哪些组件;(只要我们要用的组件有,我们就不需要再来配置了)

4)、给容器中自动配置类添加组件的时候,会从propertIEs类中获取某些属性。我们就可以在配置文件中指定这些属性的值;

xxxxautoConfigurartion:自动配置类;

给容器中添加组件

xxxxPropertIEs:封装配置文件中相关属性;

(2).细节

1).@Conditional派生注解(Spring注解版原生的@Conditional作用)

  作用:必须是@Conditional指定的条件成立,才给容器中添加组件,配置配里面的所有内容才生效;

@H_431_2419@

@Conditional扩展注解

@H_431_2419@

@ConditionalOnJava

@H_431_2419@

@ConditionalOnBean

@H_431_2419@

@ConditionalOnMissingBean

@H_431_2419@

@ConditionalOnExpression

@H_431_2419@

@ConditionalOnClass

@H_431_2419@

@ConditionalOnMissingClass

@H_431_2419@

@ConditionalOnSingleCandIDate

@H_431_2419@

@ConditionalOnProperty

@H_431_2419@

@ConditionalOnResource

@H_431_2419@

@ConditionalOnWebApplication

@H_431_2419@

@ConditionalOnNotWebApplication

@H_431_2419@

@ConditionalOnJndi

作用(判断是否满足当前指定条件)

系统的java版本是否符合要求

容器中存在指定Bean

容器中不存在指定Bean

满足SpEL表达式指定

系统中有指定的类

系统中没有指定的类

容器中只有一个指定的Bean,或者这个Bean是首选Bean

系统中指定的属性是否有指定的值

类路径下是否存在指定资源文件

当前是web环境

当前不是web环境

JNDI存在指定项

自动配置类必须在一定的条件下才能生效;

我们怎么知道哪些自动配置类生效;

我们可以通过启用  deBUG=true属性;来让控制台打印自动配置报告,这样我们就可以很方便的知道哪些自动配置类生效;

============================

CONDITIONS EVALUATION REPORT

============================

 

 

Positive matches: 启用的自动配置类

-----------------

 

   AopautoConfiguration matched:

      - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition)

 

   AopautoConfiguration.ClassproxyingConfiguration matched:

      - @ConditionalOnMissingClass dID not find unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition)

      - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition)

 

 

Negative matches:

没启用的自动配置类

-----------------

 

   ActiveMQautoConfiguration:

      DID not match:

         - @ConditionalOnClass dID not find required class 'javax.jms.ConnectionFactory' (OnClassCondition)

参考文档:https://bitbucket.org/asomov/snakeyaml/wiki/Documentation#markdown-header-yaml-syntax

 

总结

以上是内存溢出为你收集整理的2、Spring Boot配置全部内容,希望文章能够帮你解决2、Spring Boot配置所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/langs/1227050.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-05
下一篇 2022-06-05

发表评论

登录后才能评论

评论列表(0条)

保存