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

溫馨提示×

溫馨提示×

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

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

怎么在spring boot中實現條件裝配bean

發布時間:2021-05-27 18:17:40 來源:億速云 閱讀:125 作者:Leah 欄目:編程語言

怎么在spring boot中實現條件裝配bean?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

啥是條件裝配

在bean裝配前的條件判斷。比如@Profile(是在spring3.1中引入),@Contditional(spring4.0中引入)
實現方式:注解方式,編程方式。

假設我們現在有一個多數據求和計算的小需求,定義兩種方式Java7和Java8,然后使用條件裝配的方式分別裝配不同的bean。

首先我們定義一個接口

public interface CalculateService {

  /**
   * 從多個整數 sum 求和
   * @param values 多個整數
   * @return sum 累加值
   */
  Integer sum(Integer... values);
}

其次是兩種不同的實現方式,Java7的方式

@Profile("Java7")
@Service
public class Java7CalculateService implements CalculateService {

  @Override
  public Integer sum(Integer... values) {
    System.out.println("Java 7 for 循環實現 ");
    int sum = 0;
    for (int i = 0; i < values.length; i++) {
      sum += values[i];
    }
    return sum;
  }

}

Java8的實現

@Profile("Java8")
@Service
public class Java8CalculateService implements CalculateService {

  @Override
  public Integer sum(Integer... values) {
    System.out.println("Java 8 Lambda 實現");
    int sum = Stream.of(values).reduce(0, Integer::sum);
    return sum;
  }

  public static void main(String[] args) {
    CalculateService calculateService = new Java8CalculateService();
    System.out.println(calculateService.sum(1, 2, 3, 4, 5, 6, 7, 8, 9, 10));
  }

}

我們在這里使用了@Profile("Java8")注解來表明對應的profile。然后我定義一個啟動類在里面配置裝配哪一個bean

@SpringBootApplication(scanBasePackages = "com.service")
public class CalculateServiceBootstrap {

  public static void main(String[] args) {
    ConfigurableApplicationContext context = new SpringApplicationBuilder(CalculateServiceBootstrap.class)
        .web(WebApplicationType.NONE)
        .profiles("Java8")
        .run(args);

    // CalculateService Bean 是否存在
    CalculateService calculateService = context.getBean(CalculateService.class);

    System.out.println("calculateService.sum(1...10) : " +
        calculateService.sum(1, 2, 3, 4, 5, 6, 7, 8, 9, 10));

    // 關閉上下文
    context.close();
  }
}

使用基于@ConditionalOnSystemProperty注解的方式實現。

首先我們定義一個注解,這里定義了一個屬性和一個值。

/**
 * Java 系統屬性 條件判斷
 *
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.TYPE, ElementType.METHOD })
@Documented
@Conditional(OnSystemPropertyCondition.class)
public @interface ConditionalOnSystemProperty {

  /**
   * Java 系統屬性名稱
   * @return
   */
  String name();

  /**
   * Java 系統屬性值
   * @return
   */
  String value();
}

定義一個條件判斷的類,當這個類中的條件滿足是才會裝載bean,這個實現類實現org.springframework.context.annotation.Condition,AnnotatedTypeMetadata可以獲取的到注解中的name和value信息,假設我們現在實現判斷系統屬性和注解中的配置的一樣就加載bean,System.getProperty("user.name")獲取當前系統下的用戶名,我的mac創建的用戶名叫yanghongxing,如果我們在注解中配置的value是yanghongxing則裝載這個bean。

/**
 * 系統屬性條件判斷
 *
 */
public class OnSystemPropertyCondition implements Condition {

  @Override
  public boolean matches(ConditionContext context, AnnotatedTypeMetadata metadata) {

    Map<String, Object> attributes = metadata.getAnnotationAttributes(ConditionalOnSystemProperty.class.getName());

    String propertyName = String.valueOf(attributes.get("name"));

    String propertyValue = String.valueOf(attributes.get("value"));

    String javaPropertyValue = System.getProperty(propertyName);

    return propertyValue.equals(javaPropertyValue);
  }
}

最后在啟動類中啟動

public class ConditionalOnSystemPropertyBootstrap {

  @Bean
  @ConditionalOnSystemProperty(name = "user.name", value = "yanghongxing")
  public String helloWorld() {
    return "Hello,World Honson";
  }

  public static void main(String[] args) {
    ConfigurableApplicationContext context = new SpringApplicationBuilder(ConditionalOnSystemPropertyBootstrap.class)
        .web(WebApplicationType.NONE)
        .run(args);
    // 通過名稱和類型獲取 helloWorld Bean
    String helloWorld = context.getBean("helloWorld", String.class);

    System.out.println("helloWorld Bean : " + helloWorld);

    // 關閉上下文
    context.close();
  }
}

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

向AI問一下細節

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

AI

德庆县| 库车县| 武汉市| 桑日县| 邢台县| 乃东县| 乌兰浩特市| 康乐县| 鄢陵县| 股票| 宁国市| 左权县| 永顺县| 博乐市| 天台县| 双流县| 石屏县| 雷波县| 临潭县| 涪陵区| 马关县| 璧山县| 新乡市| 沅江市| 山东省| 吉安县| 阿拉善左旗| 新昌县| 饶阳县| 安康市| 安福县| 迭部县| 和龙市| 兰溪市| 囊谦县| 六安市| 且末县| 滨州市| 鹤庆县| 高碑店市| 顺昌县|