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

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

Spring中如何使用條件注解

本篇文章為大家展示了Spring中如何使用條件注解,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。

為南澳等地區(qū)用戶提供了全套網(wǎng)頁設(shè)計(jì)制作服務(wù),及南澳網(wǎng)站建設(shè)行業(yè)解決方案。主營業(yè)務(wù)為成都網(wǎng)站制作、成都網(wǎng)站建設(shè)、南澳網(wǎng)站設(shè)計(jì),以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會(huì)得到認(rèn)可,從而選擇與我們長期合作。這樣,我們也可以走得更遠(yuǎn)!

一 點(diǎn)睛

Spring 4 提供了一個(gè)更通用的基于條件的Bean的創(chuàng)建,即使用@Conditional注解。

@Conditional根據(jù)滿足僅一個(gè)特定條件創(chuàng)建一個(gè)特定的Bean。也就是根據(jù)特定的條件來控制Bean的創(chuàng)建行為,這樣就可以利用這個(gè)特性進(jìn)行一些自動(dòng)的配置。

二 項(xiàng)目說明

以不同的操作系統(tǒng)為條件,通過實(shí)現(xiàn)@Condition接口,并重寫matches方法來構(gòu)造條件。若在windows系統(tǒng)下運(yùn)行,則輸出列表命令為dir;若在Linux操作系統(tǒng)下運(yùn)行程序,則輸出列表命令為ls。

三 實(shí)戰(zhàn)

1 判斷條件定義

1.1 windows的判定條件

package com.wisely.highlight_spring4.ch4.conditional;import org.springframework.context.annotation.Condition;import org.springframework.context.annotation.ConditionContext;import org.springframework.core.type.AnnotatedTypeMetadata;public class WindowsCondition implements Condition { public boolean matches(ConditionContext context,   AnnotatedTypeMetadata metadata) {  return context.getEnvironment().getProperty("os.name").contains("Windows"); }}

1.2 Linux的判定條件

package com.wisely.highlight_spring4.ch4.conditional;import org.springframework.context.annotation.Condition;import org.springframework.context.annotation.ConditionContext;import org.springframework.core.type.AnnotatedTypeMetadata;public class LinuxCondition implements Condition { public boolean matches(ConditionContext context,   AnnotatedTypeMetadata metadata) {  return context.getEnvironment().getProperty("os.name").contains("Linux"); }}

2 不同系統(tǒng)下的Bean類

2.1 接口

package com.wisely.highlight_spring4.ch4.conditional;public interface ListService {  public String showListCmd();}

2.2 Window下創(chuàng)建的Bean類

package com.wisely.highlight_spring4.ch4.conditional;public class WindowsListService implements ListService {  @Override  public String showListCmd() {   return "dir";  }}

2.3 Linux下所創(chuàng)建的Bean類

package com.wisely.highlight_spring4.ch4.conditional;public class LinuxListService implements ListService{  @Override  public String showListCmd() {   return "ls";  }}

3 配置類

package com.wisely.highlight_spring4.ch4.conditional;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Conditional;import org.springframework.context.annotation.Configuration;@Configurationpublic class ConditionConifg { @Bean @Conditional(WindowsCondition.class) //符合window條件,則實(shí)例化WindowsListService public ListService windowsListService() {  return new WindowsListService(); } @Bean @Conditional(LinuxCondition.class) //符合Linux條件,則實(shí)例化LinuxListService public ListService linuxListService() {  return new LinuxListService(); }}

4 主類

package com.wisely.highlight_spring4.ch4.conditional;import org.springframework.context.annotation.AnnotationConfigApplicationContext;public class Main {  public static void main(String[] args) {   AnnotationConfigApplicationContext context =    new AnnotationConfigApplicationContext(ConditionConifg.class);   ListService listService = context.getBean(ListService.class);   System.out.println(context.getEnvironment().getProperty("os.name")     + "系統(tǒng)下的列表命令為: "     + listService.showListCmd());   context.close();  }}

四 運(yùn)行

windows下運(yùn)行結(jié)果如下:

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

五 擴(kuò)展

如果把LinuxCondition條件改成和WindowsCondition一樣的條件會(huì)怎樣呢?即有兩個(gè)條件都匹配會(huì)怎樣呢?

修改后的代碼如下:

public class LinuxCondition implements Condition { public boolean matches(ConditionContext context,   AnnotatedTypeMetadata metadata) {  return context.getEnvironment().getProperty("os.name").contains("Windows"); }}

修改后再運(yùn)行,報(bào)錯(cuò)了:

Exception in thread "main" org.springframework.beans.factory.NoUniqueBeanDefinitionException: No qualifying bean of type [com.wisely.highlight_spring4.ch4.conditional.ListService] is defined: expected single matching bean but found 2: linuxListService,windowsListService at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBean(DefaultListableBeanFactory.java:365) at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBean(DefaultListableBeanFactory.java:331) at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:968) at com.wisely.highlight_spring4.ch4.conditional.Main.main(Main.java:11)

報(bào)錯(cuò)信息很明顯:

[com.wisely.highlight_spring4.ch4.conditional.ListService] is defined: expected single matching bean but found 2: linuxListService,windowsListService

上述內(nèi)容就是Spring中如何使用條件注解,你們學(xué)到知識或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識儲(chǔ)備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


分享標(biāo)題:Spring中如何使用條件注解
鏈接URL:http://weahome.cn/article/ihdigi.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部