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

溫馨提示×

溫馨提示×

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

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

如何在Spring boot中配置@Conditional

發布時間:2021-05-25 16:26:20 來源:億速云 閱讀:200 作者:Leah 欄目:編程語言

本篇文章給大家分享的是有關如何在Spring boot中配置@Conditional,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

1.判斷條件定義

1.)windows下的判定條件

/**
 * 實現spring 的Condition接口,并且重寫matches()方法,如果操作系統是windows就返回true
 *
 */
public class WindowsCondition implements Condition{
  @Override
  public boolean matches(ConditionContext context, AnnotatedTypeMetadata metadata) {
    return context.getEnvironment().getProperty("os.name").contains("Windows");
  }
}

2.)linux下的判定條件

/**
 * 實現spring 的Condition接口,并且重寫matches()方法,如果操作系統是linux就返回true
 *
 */
public class LinuxCondition implements Condition{
  @Override
  public boolean matches(ConditionContext context, AnnotatedTypeMetadata metadata) {
    return context.getEnvironment().getProperty("os.name").contains("Linux");
  }
}

2.不同系統下的Bean的類

1.)接口

public interface ListService {
  public String showListLine();
}

2.)windows下的Bean類

public class WindowsListService implements ListService{
  @Override
  public String showListLine() {
    return "dir";
  }
}

3.)linux下的Bean的類

public class LinuxListService implements ListService{
  @Override
  public String showListLine() {
    return "ls";
  }
}

3.配置類

@Configuration
public class ConditionConfig {
  /**
   * 通過@Conditional 注解,符合windows條件就返回WindowsListService實例
   * 
   */
  @Bean
  @Conditional(WindowsCondition.class)
  public ListService windonwsListService() {
    return new WindowsListService();
  }
  /**
   * 通過@Conditional 注解,符合linux條件就返回LinuxListService實例
   * 
   */
  @Bean
  @Conditional(LinuxCondition.class)
  public ListService linuxListService() {
    return new LinuxListService();
  }
}

4.測試類

public class ConditionTest {
  public static void main(String[] args) {
    AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(ConditionConfig.class);
    ListService listService = context.getBean(ListService.class);
    System.out
        .println(context.getEnvironment().getProperty("os.name") + " 系統下的列表命令為: " + listService.showListLine());
  }
}

5.運行測試類,由于我的是windows7 系統,因此結果是

Windows 7 系統下的列表命令為: dir

如果你的是linux系統,則結果就會是

Linux 系統下的列表命令為: ls

二、spring boot 的條件化配置

在spring boot項目中會存在一個名為spring-boot-autoconfigure的jar包

如何在Spring boot中配置@Conditional 

條件化配置就是在這個jar里面實現的,它用到了如下的條件化注解,這些注解都是以@Conditional開頭的:

如何在Spring boot中配置@Conditional 

接下來我們看個源碼的列子:

以JdbcTemplateAutoConfiguration為例,它里面有這段代碼:

@Bean
  @Primary
  @ConditionalOnMissingBean(JdbcOperations.class)
  public JdbcTemplate jdbcTemplate() {
    return new JdbcTemplate(this.dataSource);
  }

springboot是什么

springboot一種全新的編程規范,其設計目的是用來簡化新Spring應用的初始搭建以及開發過程,SpringBoot也是一個服務于框架的框架,服務范圍是簡化配置文件。

以上就是如何在Spring boot中配置@Conditional,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

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

AI

高陵县| 大竹县| 塘沽区| 汨罗市| 江津市| 抚顺县| 贵州省| 边坝县| 禄丰县| 习水县| 郎溪县| 太和县| 奎屯市| 亚东县| 安泽县| 高雄县| 日土县| 开封市| 万全县| 松潘县| 鄂托克前旗| 晴隆县| 闻喜县| 盈江县| 靖州| 铜陵市| 五家渠市| 金寨县| 繁昌县| 渝中区| 黎城县| 荥阳市| 邵阳市| 淮北市| 霍邱县| 辽宁省| 锡林浩特市| 广东省| 绵竹市| 江门市| 灯塔市|