springboot02

前置知识

注解的一些参数的含义
java注解-ElementType详解
java中元注解有四个: @Retention @Target @Document @Inherited;

   @Retention:注解的保留位置         

      @Retention(RetentionPolicy.SOURCE) //注解仅存在于源码中,在class字节码文件中不包含
      @Retention(RetentionPolicy.CLASS) // 默认的保留策略,注解会在class字节码文件中存在,但运行时无法获得,
      @Retention(RetentionPolicy.RUNTIME) // 注解会在class字节码文件中存在,在运行时可以通过反射获取到
  
  @Target:注解的作用目标
        
        @Target(ElementType.TYPE) //接口、类、枚举、注解
        @Target(ElementType.FIELD) //字段、枚举的常量
        @Target(ElementType.METHOD) //方法
        @Target(ElementType.PARAMETER) //方法参数
        @Target(ElementType.CONSTRUCTOR) //构造函数
        @Target(ElementType.LOCAL_VARIABLE)//局部变量
        @Target(ElementType.ANNOTATION_TYPE)//注解
        @Target(ElementType.PACKAGE) ///包

spring boot Condition配置1

spring boot Condition配置2

springboot02_第1张图片

@ConditionalProperty 判断环境中配置文件中国是否存在属性和值才初始化bean
@ConditionalOnClass 判断环境中是否存在对应的字节码文件才初始化bean
@ConditionalMissingBean 环境中没有该bean才初始化bean
重新写ConditionOnClass的注解
注解中定义属性(数组)
springboot02_第2张图片

RedisAutoConfiguration.java
springboot02_第3张图片

springboot02_第4张图片

你可能感兴趣的:(java)