您好,登錄后才能下訂單哦!
Spring中@Conditional注解的原理是什么,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
@Conditional是Spring4新提供的注解,它的作用是根據某個條件加載特定的bean。
我們需要創建實現類來實現Condition接口,這是Condition的源碼
public interface Condition { boolean matches(ConditionContext var1, AnnotatedTypeMetadata var2); }
所以我們需要重寫matches方法,該方法返回boolean類型。
首先我們準備根據不同的操作系統環境進行對容器加載不同的bean,先創建Person
public class Person { }
創建實現類LinuxCondition和WindowCondiction,
LinuxCondition:
public class WindowCondiction implements Condition { @Override public boolean matches(ConditionContext conditionContext, AnnotatedTypeMetadata annotatedTypeMetadata) { return true; } }
WindowCondiction:
public class LinuxCondition implements Condition { @Override public boolean matches(ConditionContext conditionContext, AnnotatedTypeMetadata annotatedTypeMetadata) { return true; } }
配置類:給相應的bean加上 @Conditional注解,里面的括號將返回boolean類型,返回true則加載bean
@Configuration public class MainConfig { @Profile("window") @Conditional(WindowCondiction.class) @Bean public Person person01(){ return new Person("李思",30); } @Profile("linux") @Conditional(LinuxCondition.class) @Bean public Person person02(){ return new Person("wangwu",35); } }
測試:現在是按照linux環境,@Profile注解先匹配linux的bean,再根據@Conditional 返回的類型判斷是否加載bean,這里都設置返回true,所以應該打印
Person{name='wangwu', age=35}
public class CondictionTest { @Test public void test(){ //創建容器 AnnotationConfigApplicationContext applicationContext = new AnnotationConfigApplicationContext(); //設置需要激活的環境 applicationContext.getEnvironment().setActiveProfiles("linux"); //設置主配置類 applicationContext.register(MainProfileConfig.class); //啟動刷新容器 applicationContext.refresh(); String[] beanNamesForType = applicationContext.getBeanNamesForType(DataSource.class); for (String name : beanNamesForType){ System.out.println(name); } applicationContext.close(); } }
如果把LinuxCondition的返回值該為false,會報找不到bean的異常
org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'com.springbean.Person' available
關于Spring中@Conditional注解的原理是什么問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。