1. 程式人生 > 程式設計 >Spring註解@Conditional案例解析

Spring註解@Conditional案例解析

【1】@Conditional介紹

@Conditional是Spring4新提供的註解,它的作用是按照一定的條件進行判斷,滿足條件給容器註冊bean。

@Conditional原始碼:

//此註解可以標註在類和方法上
@Target({ElementType.TYPE,ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME) 
@Documented
public @interface Conditional {
  Class<? extends Condition>[] value();
}

從程式碼中可以看到,需要傳入一個Class陣列,並且需要繼承Condition介面:

public interface Condition {
  boolean matches(ConditionContext var1,AnnotatedTypeMetadata var2);
}

Condition是個介面,需要實現matches方法,返回true則注入bean,false則不注入。

【2】@Conditional示例

首先,建立Person類:

public class Person {
 
  private String name;
  private Integer age;
 
  public String getName() {
    return name;
  }
 
  public void setName(String name) {
    this.name = name;
  }
 
  public Integer getAge() {
    return age;
  }
 
  public void setAge(Integer age) {
    this.age = age;
  }
 
  public Person(String name,Integer age) {
    this.name = name;
    this.age = age;
  }
 
  @Override
  public String toString() {
    return "Person{" + "name='" + name + '\'' + ",age=" + age + '}';
  }
}

建立MyConfig類,用於配置兩個Person例項並注入,一個是Bill Gates,一個是linus。

@Configuration
public class MyConfig {
 
  @Bean(name = "bill")
  public Person person1(){
    return new Person("Bill Gates",62);
  }
 
  @Bean("linus")
  public Person person2(){
    return new Person("Linus",48);
  }
}

寫一個測試類,測試是否注入成功

public class ConditionalTest {
  AnnotationConfigApplicationContext applicationContext = new AnnotationConfigApplicationContext(BeanConfig.class);
 
  @Test
  public void test1(){
    Map<String,Person> map = applicationContext.getBeansOfType(Person.class);
    System.out.println(map);
  }
}
/**測試結果
{bill=Person{name='Bill Gates',age=62},linus=Person{name='Linus',age='48'}}
*/

這是一個簡單的例子,現在問題來了,如果我想根據當前作業系統來注入Person例項,windows下注入bill,linux下注入linus,怎麼實現呢?

這就需要我們用到@Conditional註解了,前言中提到,需要實現Condition介面,並重寫方法來自定義match規則。

首先,建立一個WindowsCondition類:

public class WindowsCondition implements Condition {
 
  /**
   * @param conditionContext:判斷條件能使用的上下文環境
   * @param annotatedTypeMetadata:註解所在位置的註釋資訊
   * */
  @Override
  public boolean matches(ConditionContext conditionContext,AnnotatedTypeMetadata annotatedTypeMetadata) {
    //獲取ioc使用的beanFactory
    ConfigurableListableBeanFactory beanFactory = conditionContext.getBeanFactory();
    //獲取類載入器
    ClassLoader classLoader = conditionContext.getClassLoader();
    //獲取當前環境資訊
    Environment environment = conditionContext.getEnvironment();
    //獲取bean定義的註冊類
    BeanDefinitionRegistry registry = conditionContext.getRegistry();
 
    //獲得當前系統名
    String property = environment.getProperty("os.name");
    //包含Windows則說明是windows系統,返回true
    if (property.contains("Windows")){
      return true;
    }
    return false;
  }
}

接著,建立LinuxCondition類:

public class LinuxCondition implements Condition {
  @Override
  public boolean matches(ConditionContext conditionContext,AnnotatedTypeMetadata annotatedTypeMetadata) { 
    Environment environment = conditionContext.getEnvironment();
    String property = environment.getProperty("os.name");
    if (property.contains("Linux")){
      return true;
    }
    return false;
  }
}

修改MyConfig:

@Configuration
public class MyConfig { 
  //只有一個類時,大括號可以省略
  //如果WindowsCondition的實現方法返回true,則注入這個bean  
  @Conditional({WindowsCondition.class})
  @Bean(name = "bill")
  public Person person1(){
    return new Person("Bill Gates",62);
  }
  //如果LinuxCondition的實現方法返回true,則注入這個bean
  @Conditional({LinuxCondition.class})
  @Bean("linus")
  public Person person2(){
    return new Person("Linus",48);
  }
}

標註在方法上:

​ 修改測試程式,開始測試:

public class ConditionalTest {
  AnnotationConfigApplicationContext applicationContext = new AnnotationConfigApplicationContext(BeanConfig.class);
 
  @Test
  public void test1(){
    String osName = applicationContext.getEnvironment().getProperty("os.name");
    System.out.println("當前系統為:" + osName);
    Map<String,Person> map = applicationContext.getBeansOfType(Person.class);
    System.out.println(map);
  }
}
/**測試結果
當前系統為:Windows 10
{bill=Person{name='Bill Gates',age=62}}
*/

一個方法只能注入一個bean例項,所以@Conditional標註在方法上只能控制一個bean例項是否注入

標註在類上:

@Configuration
@Conditional({WindowsCondition.class})
public class MyConfig {
 
  //只有一個類時,大括號可以省略
  //如果WindowsCondition的實現方法返回true,則注入這個bean  
  @Bean(name = "bill")
  public Person person1(){
    return new Person("Bill Gates",62);
  }
 
  //如果LinuxCondition的實現方法返回true,則注入這個bean
  @Bean("linus")
  public Person person2(){
    return new Person("Linus",48);
  }
}

一個類中可以注入很多例項,@Conditional標註在類上就決定了一批bean是否注入。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援我們。