91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spring中@Conditional注解的原理是什么

發布時間:2021-06-11 16:12:45 來源:億速云 閱讀:308 作者:Leah 欄目:編程語言

Spring中@Conditional注解的原理是什么,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

@Conditional是Spring4新提供的注解,它的作用是根據某個條件加載特定的bean。

我們需要創建實現類來實現Condition接口,這是Condition的源碼

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

所以我們需要重寫matches方法,該方法返回boolean類型。

首先我們準備根據不同的操作系統環境進行對容器加載不同的bean,先創建Person

public class Person {
}

創建實現類LinuxCondition和WindowCondiction,

LinuxCondition:

public class WindowCondiction implements Condition {
  @Override
  public boolean matches(ConditionContext conditionContext, AnnotatedTypeMetadata annotatedTypeMetadata) {
   return true;
  }
}

WindowCondiction:

public class LinuxCondition implements Condition {
  @Override
  public boolean matches(ConditionContext conditionContext, AnnotatedTypeMetadata annotatedTypeMetadata) {

    return true;
  }
}

配置類:給相應的bean加上 @Conditional注解,里面的括號將返回boolean類型,返回true則加載bean

@Configuration
public class MainConfig {

  @Profile("window")
  @Conditional(WindowCondiction.class)
  @Bean
  public Person person01(){
    return new Person("李思",30);
  }

  @Profile("linux")
  @Conditional(LinuxCondition.class)
  @Bean
  public Person person02(){
    return new Person("wangwu",35);
  }
}

測試:現在是按照linux環境,@Profile注解先匹配linux的bean,再根據@Conditional 返回的類型判斷是否加載bean,這里都設置返回true,所以應該打印

Person{name='wangwu', age=35}

public class CondictionTest {

  @Test
  public void test(){
    //創建容器
    AnnotationConfigApplicationContext applicationContext = new AnnotationConfigApplicationContext();
    //設置需要激活的環境
    applicationContext.getEnvironment().setActiveProfiles("linux");
    //設置主配置類
    applicationContext.register(MainProfileConfig.class);
    //啟動刷新容器
    applicationContext.refresh();

    String[] beanNamesForType = applicationContext.getBeanNamesForType(DataSource.class);
    for (String name : beanNamesForType){
      System.out.println(name);
    }
    applicationContext.close();
  }
}

如果把LinuxCondition的返回值該為false,會報找不到bean的異常

org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'com.springbean.Person' available

關于Spring中@Conditional注解的原理是什么問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

龙州县| 博爱县| 美姑县| 全州县| 普安县| 绥阳县| 五原县| 横山县| 内江市| 阜宁县| 康平县| 都匀市| 辽宁省| 甘肃省| 瑞金市| 广平县| 万州区| 尼勒克县| 丰城市| 陇西县| 濮阳县| 惠州市| 千阳县| 杭锦后旗| 海南省| 青岛市| 微山县| 永定县| 公安县| 涡阳县| 洞头县| 宿迁市| 黄石市| 莒南县| 霸州市| 金阳县| 顺昌县| 贡觉县| 许昌县| 渭南市| 林口县|