本篇文章給大家分享的是有關(guān)Spring中@Conditional注解如何使用,小編覺得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
我們提供的服務(wù)有:成都做網(wǎng)站、網(wǎng)站建設(shè)、微信公眾號(hào)開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、商州ssl等。為上千余家企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的商州網(wǎng)站制作公司
【1】@Conditional介紹
@Conditional是Spring4新提供的注解,它的作用是按照一定的條件進(jìn)行判斷,滿足條件給容器注冊(cè)bean。
@Conditional源碼:
//此注解可以標(biāo)注在類和方法上 @Target({ElementType.TYPE, ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface Conditional { Class extends Condition>[] value(); }
從代碼中可以看到,需要傳入一個(gè)Class數(shù)組,并且需要繼承Condition接口:
public interface Condition { boolean matches(ConditionContext var1, AnnotatedTypeMetadata var2); }
Condition是個(gè)接口,需要實(shí)現(xiàn)matches方法,返回true則注入bean,false則不注入。
【2】@Conditional示例
首先,創(chuàng)建Person類:
public class Person { private String name; private Integer age; public String getName() { return name; } public void setName(String name) { this.name = name; } public Integer getAge() { return age; } public void setAge(Integer age) { this.age = age; } public Person(String name, Integer age) { this.name = name; this.age = age; } @Override public String toString() { return "Person{" + "name='" + name + '\'' + ", age=" + age + '}'; } }
創(chuàng)建MyConfig類,用于配置兩個(gè)Person實(shí)例并注入,一個(gè)是Bill Gates,一個(gè)是linus。
@Configuration public class MyConfig { @Bean(name = "bill") public Person person1(){ return new Person("Bill Gates",62); } @Bean("linus") public Person person2(){ return new Person("Linus",48); } }
寫一個(gè)測(cè)試類,測(cè)試是否注入成功
public class ConditionalTest { AnnotationConfigApplicationContext applicationContext = new AnnotationConfigApplicationContext(BeanConfig.class); @Test public void test1(){ Mapmap = applicationContext.getBeansOfType(Person.class); System.out.println(map); } } /**測(cè)試結(jié)果 {bill=Person{name='Bill Gates',age=62},linus=Person{name='Linus',age='48'}} */
這是一個(gè)簡(jiǎn)單的例子,現(xiàn)在問題來了,如果我想根據(jù)當(dāng)前操作系統(tǒng)來注入Person實(shí)例,windows下注入bill,linux下注入linus,怎么實(shí)現(xiàn)呢?
這就需要我們用到@Conditional注解了,前言中提到,需要實(shí)現(xiàn)Condition接口,并重寫方法來自定義match規(guī)則。
首先,創(chuàng)建一個(gè)WindowsCondition類:
public class WindowsCondition implements Condition { /** * @param conditionContext:判斷條件能使用的上下文環(huán)境 * @param annotatedTypeMetadata:注解所在位置的注釋信息 * */ @Override public boolean matches(ConditionContext conditionContext, AnnotatedTypeMetadata annotatedTypeMetadata) { //獲取ioc使用的beanFactory ConfigurableListableBeanFactory beanFactory = conditionContext.getBeanFactory(); //獲取類加載器 ClassLoader classLoader = conditionContext.getClassLoader(); //獲取當(dāng)前環(huán)境信息 Environment environment = conditionContext.getEnvironment(); //獲取bean定義的注冊(cè)類 BeanDefinitionRegistry registry = conditionContext.getRegistry(); //獲得當(dāng)前系統(tǒng)名 String property = environment.getProperty("os.name"); //包含Windows則說明是windows系統(tǒng),返回true if (property.contains("Windows")){ return true; } return false; } }
接著,創(chuàng)建LinuxCondition類:
public class LinuxCondition implements Condition { @Override public boolean matches(ConditionContext conditionContext, AnnotatedTypeMetadata annotatedTypeMetadata) { Environment environment = conditionContext.getEnvironment(); String property = environment.getProperty("os.name"); if (property.contains("Linux")){ return true; } return false; } }
修改MyConfig:
@Configuration public class MyConfig { //只有一個(gè)類時(shí),大括號(hào)可以省略 //如果WindowsCondition的實(shí)現(xiàn)方法返回true,則注入這個(gè)bean @Conditional({WindowsCondition.class}) @Bean(name = "bill") public Person person1(){ return new Person("Bill Gates",62); } //如果LinuxCondition的實(shí)現(xiàn)方法返回true,則注入這個(gè)bean @Conditional({LinuxCondition.class}) @Bean("linus") public Person person2(){ return new Person("Linus",48); } }
標(biāo)注在方法上:
修改測(cè)試程序,開始測(cè)試:
public class ConditionalTest { AnnotationConfigApplicationContext applicationContext = new AnnotationConfigApplicationContext(BeanConfig.class); @Test public void test1(){ String osName = applicationContext.getEnvironment().getProperty("os.name"); System.out.println("當(dāng)前系統(tǒng)為:" + osName); Mapmap = applicationContext.getBeansOfType(Person.class); System.out.println(map); } } /**測(cè)試結(jié)果 當(dāng)前系統(tǒng)為:Windows 10 {bill=Person{name='Bill Gates',age=62}} */
一個(gè)方法只能注入一個(gè)bean實(shí)例,所以@Conditional標(biāo)注在方法上只能控制一個(gè)bean實(shí)例是否注入
標(biāo)注在類上:
@Configuration @Conditional({WindowsCondition.class}) public class MyConfig { //只有一個(gè)類時(shí),大括號(hào)可以省略 //如果WindowsCondition的實(shí)現(xiàn)方法返回true,則注入這個(gè)bean @Bean(name = "bill") public Person person1(){ return new Person("Bill Gates",62); } //如果LinuxCondition的實(shí)現(xiàn)方法返回true,則注入這個(gè)bean @Bean("linus") public Person person2(){ return new Person("Linus",48); } }
以上就是Spring中@Conditional注解如何使用,小編相信有部分知識(shí)點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見到或用到的。希望你能通過這篇文章學(xué)到更多知識(shí)。更多詳情敬請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。