真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯網站制作重慶分公司

如何在Springboot中配置@Conditional

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

成都創(chuàng)新互聯專注于企業(yè)網絡營銷推廣、網站重做改版、泗水網站定制設計、自適應品牌網站建設、H5場景定制、成都做商城網站、集團公司官網建設、外貿網站制作、高端網站制作、響應式網頁設計等建站業(yè)務,價格優(yōu)惠性價比高,為泗水等各大城市提供網站開發(fā)制作服務。

1.判斷條件定義

1.)windows下的判定條件

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

2.不同系統(tǒng)下的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") + " 系統(tǒng)下的列表命令為: " + listService.showListLine());
  }
}

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

Windows 7 系統(tǒng)下的列表命令為: dir

如果你的是linux系統(tǒng),則結果就會是

Linux 系統(tǒng)下的列表命令為: 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一種全新的編程規(guī)范,其設計目的是用來簡化新Spring應用的初始搭建以及開發(fā)過程,SpringBoot也是一個服務于框架的框架,服務范圍是簡化配置文件。

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


網頁題目:如何在Springboot中配置@Conditional
本文地址:http://weahome.cn/article/jsdoss.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部