`
y806839048
  • 浏览: 1130478 次
  • 性别: Icon_minigender_1
  • 来自: 上海
文章分类
社区版块
存档分类
最新评论

condationalon***的理解

阅读更多

 

总括:

oncondiotonal***(属性) -----符合匹配条件就加载,有多个判断标准相当于||符合一个即可 (属性)

 

@ConditionalOnClass:该注解的参数对应的类必须存在,否则不解析该注解修饰的配置类; (类)---类较为简单

@ConditionalOnMissingBean:该注解表示,如果存在它修饰的类的bean,则不需要再创建这个bean;可以给该注解传入参数例如

 @ConditionOnMissingBean(name = "example"),这个表示如果name为“example”的bean存在,这该注解修饰的代码块不执行。

 

 

 

1. spring boot ConditionalOnProperty 使用讲解

@Retention(RetentionPolicy.RUNTIME)  

@Target({ElementType.TYPE, ElementType.METHOD})  

@Documented  

@Conditional({OnPropertyCondition.class})  

public @interface ConditionalOnProperty {  

    String[] value() default {}; //数组,获取对应property名称的值,与name不可同时使用  

 

    String prefix() default "";//property名称的前缀,可有可无  

 

    String[] name() default {};//数组,property完整名称或部分名称(可与prefix组合使用,组成完整的property名称),与value不可同时使用  

 

    String havingValue() default "";//可与name组合使用,比较获取到的属性值与havingValue给定的值是否相同,相同才加载配置  

 

    boolean matchIfMissing() default false;//缺少该property时是否可以加载。如果为true,没有该property也会正常加载;反之报错  

 

    boolean relaxedNames() default true;//是否可以松散匹配

}  

 

操作案例

案例1: 值必须匹配为123 才会有效

注意 : prefix 可以不用, 但是要写全部在name 上

@ConditionalOnProperty(prefix = "parentName",name = "sonName",havingValue = "123")  

.yml配置如下:  

parentName:  

      sonName: 123      //正常    

parentName:  

      sonName: 1234     //失败,与havingValue给定的值不一致  

 

案例2: 值必须匹配为123 才会有效, 并且可以yml 或者 properties 文件中不设置这个属性, 因为matchIfMissing 为true

@ConditionalOnProperty(prefix = "parentName",name = "sonName",havingValue = "123",matchIfMissing = true)  

// .yml配置如下:     

//不配置相关参数       //正常,当matchIfMissing = true时,即使没有该parentName.sonName属性也会加载正常 

 

案例3: 配置多个属性值, 并且属性值都是一样的情况下才有效

注意: 可以使用在判断两个配置属性都为为某个值的情况下使用, 比较方便,

parentName.sonName和parentName.flag的值都要与havingValue的一致才行

@ConditionalOnProperty(prefix = "parentName", name = {"sonName", "flag"}, havingValue = "123")

parentName:  

      sonName: 123  

      flag: 1234       //失败     

parentName:  

    sonName: 123  

    flag: 123        //正常  

parentName:  

    sonName: 123     //失败,缺少parentName.flag  

 

案例4: 配置多个属性值, 并且属性值都是一样的情况下才有效, 其中设置 matchIfMissing = true, 允许不在配置文件中出现

@ConditionalOnProperty(prefix = "parentName", name = {"sonName", "flag"}, havingValue = "123",matchIfMissing = true)

parentName:  

    sonName: 123     //正常     

 

// .yml配置如下:      

// 不配置相关参数      //正常    

 

2. ConditionalOnExpression 使用详解

Solution for Two Properties

@ConditionalOnExpression("${properties.first.property.enable:true} && ${properties.second.property.startServer:false}")

 

 

注意: 上述的英文解释, 来源于参考地址, 在下方 

Note the following: 

You need to using colon notation to indicate the default value of the property in the expression language statement

Each property is in a separate expression language block ${}

The && operator is used outside of the SpEL blocks

Solution for more then 2 properties

@ConditionalOnExpression("${properties.first.property.enable:true} " +

        "&& ${properties.second.property.enable:true} " +

        "&& ${properties.third.property.enable:true}")

 

 

注意: 原文解释, 的一些缺点。 

The drawback is that you cannot use a matchIfMissing argument as you would be able to when using the @ConditionalOnProperty annotation so you will have to ensure that the properties are present in the .properties or YAML files for all your profiles/environments or just rely on the default value

other so solution

@ConditionalOnExpression("'${com.property1}'.equals('${com.property2}')")

 

 

 

原文:https://blog.csdn.net/zhongzunfa/article/details/80392446 

 

 

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics