@ConditionalOnProperty配置条件用法

1.application.yml配置

spring:
  rabbitmq:
    listener: 
      simple:
        prefetch: 1
        acknowledge-mode: auto
        retry:
          enabled: true # consumer retry

2.指定prefix +name + havingValue

指定了havingValue,要把配置项的值与havingValue对比,一致则加载Bean

@Configuration
@ConditionalOnProperty(prefix = "spring.rabbitmq.listener.simple.retry", name = "enabled", havingValue = "true")
public class ErrorConfiguration(){
   
    @Bean
    public DirectExchange errorExchange(){
        return new DirectExchange("error.direct");
    }
    .....
}

@ConditionalOnProperty源码:

@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.TYPE, ElementType.METHOD })
@Documented
@Conditional(OnPropertyCondition.class)
public @interface ConditionalOnProperty {


	//name的别名,和value不可同时使用
	String[] value() default {};

	/**配置项的前缀,例如完整的配置是config.person.enable=true
	* 那 prefix=“config.person”
	*/
	String prefix() default "";

	/**
	配置项的属性,例如完整的配置是config.person.enable=true
	在前面已经设置 prefix=“config.person”
	那么 name=“enable”;
	
	如果prefix没有设置,那么name可以是整个配置项,例如下面:
	name=“config.person.enable”,效果和上面的一样
	 */
	String[] name() default {};

	/**
	 * 会将配置文件中的值和havingValue的值对比,如果一样则加载Bean,例如:
	 * 
	 * config.person.enable=true,havingValue=“true”,加载Bean
	 * 
	 * config.person.enable=false,havingValue=“false”,加载Bean
	 * 
	 * config.person.enable=ok,havingValue=“ok”,加载Bean
	 * 
	 * config.person.enable=false,havingValue=“true”,不加载Bean
	 * 
	 * config.person.enable=ok,havingValue=“no”,不加载Bean
	 * 
	 * 当然havingValue也可以不设置,只要配置项的值不是false或“false”,都加载Bean,例如:
	 * 
	 * config.person.enable=ok,不设置havingValue,加载Bean
	 * 
	 * config.person.enable=false,不设置havingValue,不加载Bean
	 */
	String havingValue() default "";

	/**
	 * 如果在配置文件中没有该配置项,是否加载Bean
	 */
	boolean matchIfMissing() default false;

}

参考:SpringBoot教程(7) @ConditionalOnProperty 详细讲解和示例-CSDN博客

你可能感兴趣的:(Java,java,开发语言)