spring条件注解有哪些
Spring 4引入了一个称为Conditional的新功能,该功能针对于生成bean的Spring组件,并注视这些bean的生成,实质上,它提供了一种条件生成bean的方法。
考虑一个简单的例子:
我有一个名为“ CustomerService”的服务,该服务有两个实现,例如“ CustomerService1”和“ CustomerService2”。 基于系统属性(例如“ servicedefault”)的存在,我要创建默认的“ CustomerService1”实现,如果不存在,则要创建“ CustomerService2”的实例。
使用基于Java配置的Spring bean定义,我可以这样进行:
@Configuration
public static class ContextConfig {@Beanpublic CustomerService customerService() {if (System.getProperty("servicedefault")!=null) {return new CustomerServiceImpl1();}return new CustomerServiceImpl2();}
}
另一种方法是使用Spring 3.1引入的Spring Bean Profiles :
@Bean
@Profile("default")
public CustomerService service1() {return new CustomerServiceImpl1();
}@Bean
@Profile("prod")
public CustomerService service2() {return new CustomerServiceImpl2();
}
但是,此特定实例中的Profiles有点笨拙,因为很难设置用于管理一个bean的实现策略的配置文件,它更适合需要控制一组bean的行为的情况。
Spring 4引入了条件注释,可以用一些可重用的方式来实现此行为。
条件依赖于一组条件类来指定谓词,这种方式是:
class HardCodedSystemPropertyPresentCondition implements Condition {@Overridepublic boolean matches(ConditionContext context, AnnotatedTypeMetadata metadata) {return (System.getProperty("servicedefault") != null);}
}class HardCodedSystemPropertyAbsentCondition implements Condition {@Overridepublic boolean matches(ConditionContext context, AnnotatedTypeMetadata metadata) {return (System.getProperty("servicedefault") == null);}
}
我需要两个谓词,一个用于指定肯定条件,一个用于指定否定条件,这些谓词现在可以应用于bean定义:
@Bean
@Conditional(HardCodedSystemPropertyPresentCondition.class)
public CustomerService service1() {return new CustomerServiceImpl1();
}@Bean
@Conditional(HardCodedSystemPropertyAbsentCondition.class)
public CustomerService service2() {return new CustomerServiceImpl2();
}
但是,请注意,条件代码中有一个硬编码的系统属性名称“ servicedefault”,可以使用元注释进一步清除它。 可以通过以下方式定义新的元注释:
@Target({ ElementType.TYPE, ElementType.METHOD })
@Retention(RetentionPolicy.RUNTIME)
@Conditional(OnSystemPropertyCondition.class)
public @interface ConditionalOnSystemProperty {public String value();public boolean exists() default true;
}
此元注释ConditionalOnSystemProperty接受两个用户指定的属性-系统属性名称的“值”和“存在”以检查该属性是否存在或检查该属性不存在。 该元注释使用@Conditional注释进行标记,该注释指向Condition类以触发使用此新的meta注释进行注释的bean,Condition类如下:
public class OnSystemPropertyCondition implements Condition {@Overridepublic boolean matches(ConditionContext context, AnnotatedTypeMetadata metadata) {Map<String, Object> attributes = metadata.getAnnotationAttributes(ConditionalOnSystemProperty.class.getName());Boolean systemPropertyExistsCheck = (Boolean)attributes.get("exists");String systemProperty = (String)attributes.get("value");if ((systemPropertyExistsCheck && (System.getProperty(systemProperty) != null)) ||(!systemPropertyExistsCheck && (System.getProperty(systemProperty) == null))) {return true;}return false;}
}
这里的逻辑是使用元注释来掌握@Bean实例上定义的属性,并基于附加的“ exists”属性触发对系统属性是否存在的检查。 现在,可以在@Bean实例上定义此可重用的元注释,以通过以下方式有条件地创建bean:
@Configuration
public static class ContextConfig {@Bean@ConditionalOnSystemProperty("servicedefault")public CustomerService service1() {return new CustomerServiceImpl1();}@Bean@ConditionalOnSystemProperty(value="servicedefault", exists=false)public CustomerService service2() {return new CustomerServiceImpl2();}
}
结语
这里的示例很简单,可能不是很现实,仅用于演示条件功能。 在Spring 4中,一个更好的例子是使用条件条件修改我先前提到的基于Spring 3.1的Profiles本身的行为的方式,
现在, Profiles内部基于基于条件的元注释:
@Conditional(ProfileCondition.class)
public @interface Profile {String[] value();
}
翻译自: https://www.javacodegeeks.com/2013/10/spring-4-conditional.html
spring条件注解有哪些