Class RequiredAnnotationBeanPostProcessor
- java.lang.Object
- org.springframework.beans.factory.config.InstantiationAwareBeanPostProcessorAdapter
- org.springframework.beans.factory.annotation.RequiredAnnotationBeanPostProcessor
- All Implemented Interfaces:
Aware,BeanFactoryAware,BeanPostProcessor,InstantiationAwareBeanPostProcessor,SmartInstantiationAwareBeanPostProcessor,MergedBeanDefinitionPostProcessor,Ordered,PriorityOrdered
public class RequiredAnnotationBeanPostProcessor extends InstantiationAwareBeanPostProcessorAdapter implements MergedBeanDefinitionPostProcessor, PriorityOrdered, BeanFactoryAware
BeanPostProcessorimplementation that enforces required JavaBean properties to have been configured. Required bean properties are detected through a Java 5 annotation: by default, Spring'sRequiredannotation.The motivation for the existence of this BeanPostProcessor is to allow developers to annotate the setter properties of their own classes with an arbitrary JDK 1.5 annotation to indicate that the container must check for the configuration of a dependency injected value. This neatly pushes responsibility for such checking onto the container (where it arguably belongs), and obviates the need (in part) for a developer to code a method that simply checks that all required properties have actually been set.
Please note that an 'init' method may still need to be implemented (and may still be desirable), because all that this class does is enforcing that a 'required' property has actually been configured with a value. It does not check anything else... In particular, it does not check that a configured value is not
null.Note: A default RequiredAnnotationBeanPostProcessor will be registered by the "context:annotation-config" and "context:component-scan" XML tags. Remove or turn off the default annotation configuration there if you intend to specify a custom RequiredAnnotationBeanPostProcessor bean definition.
- Since:
- 2.0
- Author:
- Rob Harrop, Juergen Hoeller
- See Also:
setRequiredAnnotationType(java.lang.Class<? extends java.lang.annotation.Annotation>),Required
Field Summary
Fields Modifier and Type Field Description static StringSKIP_REQUIRED_CHECK_ATTRIBUTEBean definition attribute that may indicate whether a given bean is supposed to be skipped when performing this post-processor's required property check.Fields inherited from interface org.springframework.core.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
Constructor Summary
Constructors Constructor Description RequiredAnnotationBeanPostProcessor()
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetOrder()Get the order value of this object.protected Class<? extends Annotation>getRequiredAnnotationType()Return the 'required' annotation type.protected booleanisRequiredProperty(PropertyDescriptor propertyDescriptor)Is the supplied property required to have a value (that is, to be dependency-injected)?voidpostProcessMergedBeanDefinition(RootBeanDefinition beanDefinition, Class<?> beanType, String beanName)Post-process the given merged bean definition for the specified bean.PropertyValuespostProcessPropertyValues(PropertyValues pvs, PropertyDescriptor[] pds, Object bean, String beanName)Post-process the given property values before the factory applies them to the given bean.voidsetBeanFactory(BeanFactory beanFactory)Callback that supplies the owning factory to a bean instance.voidsetOrder(int order)voidsetRequiredAnnotationType(Class<? extends Annotation> requiredAnnotationType)Set the 'required' annotation type, to be used on bean property setter methods.protected booleanshouldSkip(ConfigurableListableBeanFactory beanFactory, String beanName)Check whether the given bean definition is not subject to the annotation-based required property check as performed by this post-processor.Methods inherited from class org.springframework.beans.factory.config.InstantiationAwareBeanPostProcessorAdapter
determineCandidateConstructors, getEarlyBeanReference, postProcessAfterInitialization, postProcessAfterInstantiation, postProcessBeforeInitialization, postProcessBeforeInstantiation, predictBeanType
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.springframework.beans.factory.config.BeanPostProcessor
postProcessAfterInitialization, postProcessBeforeInitialization
Field Detail
SKIP_REQUIRED_CHECK_ATTRIBUTE
public static final String SKIP_REQUIRED_CHECK_ATTRIBUTE
Bean definition attribute that may indicate whether a given bean is supposed to be skipped when performing this post-processor's required property check.
Constructor Detail
RequiredAnnotationBeanPostProcessor
public RequiredAnnotationBeanPostProcessor()
Method Detail
setRequiredAnnotationType
public void setRequiredAnnotationType(Class<? extends Annotation> requiredAnnotationType)
Set the 'required' annotation type, to be used on bean property setter methods.The default required annotation type is the Spring-provided
Requiredannotation.This setter property exists so that developers can provide their own (non-Spring-specific) annotation type to indicate that a property value is required.
getRequiredAnnotationType
protected Class<? extends Annotation> getRequiredAnnotationType()
Return the 'required' annotation type.
setBeanFactory
public void setBeanFactory(BeanFactory beanFactory)
Description copied from interface:BeanFactoryAwareCallback that supplies the owning factory to a bean instance.Invoked after the population of normal bean properties but before an initialization callback such as
InitializingBean.afterPropertiesSet()or a custom init-method.- Specified by:
setBeanFactoryin interfaceBeanFactoryAware- Parameters:
beanFactory- owning BeanFactory (nevernull). The bean can immediately call methods on the factory.- See Also:
BeanInitializationException
setOrder
public void setOrder(int order)
getOrder
public int getOrder()
Description copied from interface:OrderedGet the order value of this object.Higher values are interpreted as lower priority. As a consequence, the object with the lowest value has the highest priority (somewhat analogous to Servlet
load-on-startupvalues).Same order values will result in arbitrary sort positions for the affected objects.
- Specified by:
getOrderin interfaceOrdered- Returns:
- the order value
- See Also:
Ordered.HIGHEST_PRECEDENCE,Ordered.LOWEST_PRECEDENCE
postProcessMergedBeanDefinition
public void postProcessMergedBeanDefinition(RootBeanDefinition beanDefinition, Class<?> beanType, String beanName)
Description copied from interface:MergedBeanDefinitionPostProcessorPost-process the given merged bean definition for the specified bean.- Specified by:
postProcessMergedBeanDefinitionin interfaceMergedBeanDefinitionPostProcessor- Parameters:
beanDefinition- the merged bean definition for the beanbeanType- the actual type of the managed bean instancebeanName- the name of the bean
postProcessPropertyValues
public PropertyValues postProcessPropertyValues(PropertyValues pvs, PropertyDescriptor[] pds, Object bean, String beanName) throws BeansException
Description copied from interface:InstantiationAwareBeanPostProcessorPost-process the given property values before the factory applies them to the given bean. Allows for checking whether all dependencies have been satisfied, for example based on a "Required" annotation on bean property setters.Also allows for replacing the property values to apply, typically through creating a new MutablePropertyValues instance based on the original PropertyValues, adding or removing specific values.
- Specified by:
postProcessPropertyValuesin interfaceInstantiationAwareBeanPostProcessor- Overrides:
postProcessPropertyValuesin classInstantiationAwareBeanPostProcessorAdapter- Parameters:
pvs- the property values that the factory is about to apply (nevernull)pds- the relevant property descriptors for the target bean (with ignored dependency types - which the factory handles specifically - already filtered out)bean- the bean instance created, but whose properties have not yet been setbeanName- the name of the bean- Returns:
- the actual property values to apply to the given bean (can be the passed-in PropertyValues instance), or
nullto skip property population - Throws:
BeansException- in case of errors- See Also:
MutablePropertyValues
shouldSkip
protected boolean shouldSkip(ConfigurableListableBeanFactory beanFactory, String beanName)
Check whether the given bean definition is not subject to the annotation-based required property check as performed by this post-processor.The default implementations check for the presence of the
SKIP_REQUIRED_CHECK_ATTRIBUTEattribute in the bean definition, if any. It also suggests skipping in case of a bean definition with a "factory-bean" reference set, assuming that instance-based factories pre-populate the bean.- Parameters:
beanFactory- the BeanFactory to check againstbeanName- the name of the bean to check against- Returns:
trueto skip the bean;falseto process it
isRequiredProperty
protected boolean isRequiredProperty(PropertyDescriptor propertyDescriptor)
Is the supplied property required to have a value (that is, to be dependency-injected)?This implementation looks for the existence of a
"required" annotationon the suppliedproperty.- Parameters:
propertyDescriptor- the target PropertyDescriptor (nevernull)- Returns:
trueif the supplied property has been marked as being required;falseif not, or if the supplied property does not have a setter method