@SpringbootApplication注解

一、@SpringBootApplication下的三个注解

            1:@SpringBootConfiguration 标注在某个类上,表示这是一个Spring Boot的配置类;

            2:@EnableAutoConfiguration 
                                          
            3:@ComponentScan  扫描当前包下或者子包下所有的类  

二、@ConfigurationProperties与@value的运用场景

        如果说,我们只是在某个业务逻辑中需要获取一下配置文件中的某项值,使用@Value;
        如果说,我们专门编写了一个javaBean来和配置文件进行映射,我们就直接使用@ConfigurationProperties;

三、@PropertySource、@ImportResource、@Configuration、@Bean

              @PropertySource:加载指定的配置文件,使用条件:必须与@ConfigurationProperties(prefix = "person") 一同使用否则出错

              @ImportResource::导入Spring的配置文件,让配置文件里面的内容生效;
                                 Spring Boot里面没有Spring的配置文件,我们自己编写的配置文件,也不能自动识别;
                                 想让Spring的配置文件生效,加载进来;【将@ImportResource注解配置在入口类上】

              @Configuratio:指明当前类是一个配置类;就是来替代之前的Spring配置文件【beans.xml】;同时也可以将该配置类生成对象加入到容器中

              @Bean:给容器中添加组件,相当于之前spring配置文件中【<bean><bean/>标签】

              @Import:将指定的类生成对象并导入到容器中

四、@ConfigurationProperties、@value、@PropertySource不能同时一起使用会报错

五、springboot自动配置原理

        1.SpringBoot启动的时候加载主配置类,开启了自动配置功能 @EnableAutoConfiguration

        2.@EnableAutoConfiguration 作用:

                    a.利用EnableAutoConfigurationImportSelector给容器中导入一些组件?
                    b.可以查看selectImports()方法的内容;

                    c.List configurations = getCandidateConfigurations(annotationMetadata, attributes);获取候选的配置
                                
                                i.      SpringFactoriesLoader.loadFactoryNames()
                                ii.     扫描所有jar包类路径下  META‐INF/spring.factories
                                iii.    把扫描到的这些文件的内容包装成properties对象
                                iiii.   从properties中获取到EnableAutoConfiguration.class类(类名)对应的值,然后把他们添加在容器中
  
                  例、将 类路径下 META-INF/spring.factories 里面配置的所有EnableAutoConfiguration的值加入到了容器中;

                        # 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.cloud.CloudAutoConfiguration,\
                          org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration,\
                          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.CassandraRepositoriesAutoConfiguration,\
                          org.springframework.boot.autoconfigure.data.couchbase.CouchbaseDataAutoConfiguration,\
                          org.springframework.boot.autoconfigure.data.couchbase.CouchbaseRepositoriesAutoConfiguration,\
                          org.springframework.boot.autoconfigure.data.elasticsearch.ElasticsearchAutoConfiguration,\
                          org.springframework.boot.autoconfigure.data.elasticsearch.ElasticsearchDataAutoConfiguration,\
                          org.springframework.boot.autoconfigure.data.elasticsearch.ElasticsearchRepositoriesAutoConfiguration,\
                          org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration,\
                          org.springframework.boot.autoconfigure.data.ldap.LdapDataAutoConfiguration,\
                          org.springframework.boot.autoconfigure.data.ldap.LdapRepositoriesAutoConfiguration,\
                          org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration,\
                          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.redis.RedisAutoConfiguration,\
                          org.springframework.boot.autoconfigure.data.redis.RedisRepositoriesAutoConfiguration,\ 

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

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

              4. 以HttpEncodingAutoConfiguration(Http编码自动配置)为例解释自动配置原理;
                    
                          例子:
                                @Configuration   //表示这是一个配置类,以前编写的配置文件一样,也可以给容器中添加组件

                                @EnableConfigurationProperties(HttpEncodingProperties.class)  //启动指定类的

                                ConfigurationProperties功能;将配置文件中对应的值和HttpEncodingProperties绑定起来;并把
                                                             HttpEncodingProperties加入到ioc容器中

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

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

                                @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");

                                          }

六、精髓:

  1、SpringBoot启动会加载大量的自动配置类
  2、我们看我们需要的功能有没有SpringBoot默认写好的自动配置类;
  3、我们再来看这个自动配置类中到底配置了哪些组件;(只要我们要用的组件有,我们就不需要再来配置了)
  4、满足@@Conditional一些条件后,一些配置类开始生效,开启自动配置,给容器化中的自动配置类添加组件的时候,会从properties类中获取某些属性。我们就可以在配置文件      
    【application.properties】中指定这些属性的值;

  xxxxAutoConfigurartion:自动配置类----->>给容器中添加组件                        
  xxxxProperties:封装配置文件中相关属性;

七、细节

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

posted @ 2020-09-08 16:32  jock_javaEE  阅读(2933)  评论(0编辑  收藏  举报