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

溫馨提示×

溫馨提示×

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

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

conditional注解如何在Spring Boot中使用

發布時間:2021-03-31 17:04:40 來源:億速云 閱讀:176 作者:Leah 欄目:編程語言

conditional注解如何在Spring Boot中使用?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

1、conditional注解介紹

含義: 基于條件的注解

作用: 根據是否滿足某一個特定條件來決定是否創建某個特定的bean

意義: Springboot實現自動配置的關鍵基礎能力

2、常見conditional注解

@ConditionalOnBean 框架中存在某個Bean時生效

@ConditionalOnMissingBean 在Bean不存在時生效

@ConditionalOnClass框架中存在某個Class時生效

@ConditionalOnMissingClass在Class不存在時生效

@ConditionalOnWebApplication 當前是web環境

@ConditionalOnNotWebApplication 當前不是web環境

@ConditionalOnProperty 當前框架中是否包含特定的屬性

@ConditionalOnJava 當前是否存在某個Java版本

3、Conditional的使用

1) 創建A.java,增加注解ConditionalOnProperty,表示系統中有這個屬性才實例化A

@Component
@ConditionalOnProperty("com.example.condition")
public class A {
}

2) 創建測試類

@RunWith(SpringRunner.class)
@SpringBootTest
@Import(MyBeanImport.class)
public class ConditionTest implements ApplicationContextAware {
 
  private ApplicationContext applicationContext;
 
 
  @Test
  public void testA() {
    System.out.println(applicationContext.getBean(A.class));
  }
 
 
  @Override
  public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
    this.applicationContext = applicationContext;
  }
}

3、運行測試類

拋出異常,表示沒有找到A這個類。

conditional注解如何在Spring Boot中使用

然后在application.properties文件中增加屬性

conditional注解如何在Spring Boot中使用

再次運行測試。成功。

conditional注解如何在Spring Boot中使用

4、A類中有個注解ConditionOnProperty

conditional注解如何在Spring Boot中使用

1) 進入注解ConditionOnProperty。里面有一個@Conditional注解

conditional注解如何在Spring Boot中使用

2) 進入@Conditional注解。里面的value是Class類型,并且繼承自Condition接口

conditional注解如何在Spring Boot中使用

3) 進入Condition接口。里面只有一個方法。當這個方法返回true時,這個bean才會注入到容器當中。

conditional注解如何在Spring Boot中使用

5、自定義Conditional 注解

1) 創建MyCondition類。實現Condition接口重寫matches方法,符合條件返回true

public class MyCondition implements Condition {
  @Override
  public boolean matches(ConditionContext context, AnnotatedTypeMetadata metadata) {
    String[] properties = (String[]) metadata
        .getAnnotationAttributes("com.example.demo.condi.MyConditionAnnotation")
        .get("value");
    for(String property : properties){
      if(StringUtils.isEmpty(context.getEnvironment().getProperty(property))){
        return false;
      }
    }
    return true;
  }
}

2) 創建注解MyConditionAnnotation ,并且引入Conditional注解,引入MyCondition類

@Target({ElementType.TYPE, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Conditional({MyCondition.class})
public @interface MyConditionAnnotation {
  String[] value() default {};
}

3) 創建類AA使用注解MyConditionAnnotation

@Component
@MyConditionAnnotation({"com.example.condition1","com.example.condition2"})
public class AA {
}

4) 測試

a) 此時并沒有com.example.condition1和com.example.condition2這兩個屬性值,所有測試失敗

conditional注解如何在Spring Boot中使用

b) 然后增加這兩個屬性。

conditional注解如何在Spring Boot中使用

測試成功

conditional注解如何在Spring Boot中使用

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

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

AI

将乐县| 天峨县| 虞城县| 胶州市| 来凤县| 思茅市| 东安县| 栾川县| 大连市| 沁水县| 策勒县| 邵阳县| 台江县| 柳河县| 葫芦岛市| 古田县| 蓝田县| 舟山市| 台北市| 登封市| 大英县| 正蓝旗| 玉环县| 青岛市| 慈溪市| 汉川市| 宜宾县| 辽阳县| 临颍县| 十堰市| 德清县| 松原市| 台湾省| 资中县| 普定县| 崇义县| 晋宁县| 楚雄市| 吉林市| 遂平县| 陆川县|