@Configuration等底层注解

@Configuration

一般会基本使用
知晓 Full模式与Lite模式
------- 最佳实战主要有如下两点
• 配置 类组件之间无依赖关系用Lite模式加速容器启动过程,减少判断
• 配置类组件之间有依赖关系,方法会被调用得到之前单实例组件,用Full模式


1、配置类里面使用@Bean标注在方法上给容器注册组件,默认也是单实例的
2、配置类本身也是组件
3、proxyBeanMethods:代理bean的方法

  • Full就是(proxyBeanMethods = true)、【保证每个@Bean方法被调用多少次返回的组件都是单实例的】
  • Lite模式就是(proxyBeanMethods = false)【每个@Bean方法被调用多少次返回的组件都是新创建的】
  • 组件依赖必须使用Full模式默认。其他默认是否Lite模式
    我理解就是Full模式下通过方法调用指向的仍旧是原来的Bean
    Lite模式下,直接返回新实例对象。
@Configuration(proxyBeanMethods = false) //告诉SpringBoot这是一个配置类 == 配置文件
public class MyConfig {
     

    /**
     * Full:外部无论对配置类中的这个组件注册方法调用多少次获取的都是之前注册容器中的单实例对象
     * @return
     */
    @Bean //给容器中添加组件。以方法名作为组件的id。返回类型就是组件类型。返回的值,就是组件在容器中的实例
    public User user01(){
     
        User zhangsan = new User("zhangsan", 18);
        //user组件依赖了Pet组件

        return zhangsan;
    }

    @Bean("tom")
    public Pet tomcatPet(){
     
        return new Pet("tomcat");
    }
}

@Import

@Import({User.class, DBHelper.class})
给容器中自动创建出这两个类型的组件、默认组件的名字就是全类名

@Import({
     User.class, DBHelper.class})
@Configuration(proxyBeanMethods = false) //告诉SpringBoot这是一个配置类 == 配置文件
public class MyConfig {
     
}

@Conditional

条件装配:满足Conditional指定的条件,则进行组件注入
@Configuration等底层注解_第1张图片

//@ConditionalOnBean(name = "tom")
//当组件中含有tom这个组件时这个类组件才生效,加在方法上就是这个方法组件就会注册
@ConditionalOnMissingBean(name = "tom")
public class MyConfig {
     }

@ConfigurationProperties

配置绑定
配置文件中比如写了

mycar.brand=BBB
mycar.price=1000 
/**
 * 只有在容器中的组件,才会拥有SpringBoot提供的强大功能
 */
@Component
@ConfigurationProperties(prefix = "mycar")
public class Car {
     

    private String brand;
    private Integer price;

    public String getBrand() {
     
        return brand;
    }
   
   ......

你可能感兴趣的:(@Configuration等底层注解)