成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

Spring中如何使用條件注解-創(chuàng)新互聯(lián)

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

按需網(wǎng)站建設(shè)可以根據(jù)自己的需求進(jìn)行定制,網(wǎng)站制作、成都網(wǎng)站建設(shè)構(gòu)思過程中功能建設(shè)理應(yīng)排到主要部位公司網(wǎng)站制作、成都網(wǎng)站建設(shè)的運(yùn)用實(shí)際效果公司網(wǎng)站制作網(wǎng)站建立與制做的實(shí)際意義

一 點(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é)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。

標(biāo)題名稱:Spring中如何使用條件注解-創(chuàng)新互聯(lián)
本文來源:http://jinyejixie.com/article6/djspog.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供小程序開發(fā)網(wǎng)站內(nèi)鏈、Google響應(yīng)式網(wǎng)站、手機(jī)網(wǎng)站建設(shè)、微信小程序

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

h5響應(yīng)式網(wǎng)站建設(shè)
清原| 和政县| 西吉县| 河源市| 宝清县| 嘉祥县| 彩票| 温州市| 疏附县| 濉溪县| 莒南县| 革吉县| 什邡市| 米泉市| 梁河县| 青神县| 固始县| 栖霞市| 山东| 贺兰县| 江门市| 柳河县| 泾阳县| 泌阳县| 河东区| 蒙自县| 东平县| 温宿县| 霍山县| 景东| 丹巴县| 衡水市| 兴和县| 疏勒县| 深泽县| 高碑店市| 邵阳市| 郴州市| 迁西县| 揭西县| 平邑县|