1
1
/*
2
- * Copyright 2002-2007 the original author or authors.
2
+ * Copyright 2002-2009 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
27
27
28
28
import org .springframework .beans .BeansException ;
29
29
import org .springframework .beans .PropertyValues ;
30
+ import org .springframework .beans .factory .BeanFactory ;
31
+ import org .springframework .beans .factory .BeanFactoryAware ;
30
32
import org .springframework .beans .factory .BeanInitializationException ;
33
+ import org .springframework .beans .factory .config .ConfigurableListableBeanFactory ;
31
34
import org .springframework .beans .factory .config .InstantiationAwareBeanPostProcessorAdapter ;
35
+ import org .springframework .core .Conventions ;
32
36
import org .springframework .core .Ordered ;
33
37
import org .springframework .core .PriorityOrdered ;
34
38
import org .springframework .core .annotation .AnnotationUtils ;
66
70
* @see Required
67
71
*/
68
72
public class RequiredAnnotationBeanPostProcessor extends InstantiationAwareBeanPostProcessorAdapter
69
- implements PriorityOrdered {
73
+ implements PriorityOrdered , BeanFactoryAware {
74
+
75
+ /**
76
+ * Bean definition attribute that may indicate whether a given bean is supposed
77
+ * to be skipped when performing this post-processor's required property check.
78
+ * @see #shouldSkip
79
+ */
80
+ public static final String SKIP_REQUIRED_CHECK_ATTRIBUTE =
81
+ Conventions .getQualifiedAttributeName (RequiredAnnotationBeanPostProcessor .class , "skipRequiredCheck" );
82
+
70
83
71
84
private Class <? extends Annotation > requiredAnnotationType = Required .class ;
72
85
73
86
private int order = Ordered .LOWEST_PRECEDENCE - 1 ;
74
87
88
+ private ConfigurableListableBeanFactory beanFactory ;
89
+
75
90
/** Cache for validated bean names, skipping re-validation for the same bean */
76
91
private final Set <String > validatedBeanNames = Collections .synchronizedSet (new HashSet <String >());
77
92
@@ -97,6 +112,12 @@ protected Class<? extends Annotation> getRequiredAnnotationType() {
97
112
return this .requiredAnnotationType ;
98
113
}
99
114
115
+ public void setBeanFactory (BeanFactory beanFactory ) {
116
+ if (beanFactory instanceof ConfigurableListableBeanFactory ) {
117
+ this .beanFactory = (ConfigurableListableBeanFactory ) beanFactory ;
118
+ }
119
+ }
120
+
100
121
public void setOrder (int order ) {
101
122
this .order = order ;
102
123
}
@@ -112,20 +133,36 @@ public PropertyValues postProcessPropertyValues(
112
133
throws BeansException {
113
134
114
135
if (!this .validatedBeanNames .contains (beanName )) {
115
- List <String > invalidProperties = new ArrayList <String >();
116
- for (PropertyDescriptor pd : pds ) {
117
- if (isRequiredProperty (pd ) && !pvs .contains (pd .getName ())) {
118
- invalidProperties .add (pd .getName ());
136
+ if (!shouldSkip (this .beanFactory , beanName )) {
137
+ List <String > invalidProperties = new ArrayList <String >();
138
+ for (PropertyDescriptor pd : pds ) {
139
+ if (isRequiredProperty (pd ) && !pvs .contains (pd .getName ())) {
140
+ invalidProperties .add (pd .getName ());
141
+ }
142
+ }
143
+ if (!invalidProperties .isEmpty ()) {
144
+ throw new BeanInitializationException (buildExceptionMessage (invalidProperties , beanName ));
119
145
}
120
- }
121
- if (!invalidProperties .isEmpty ()) {
122
- throw new BeanInitializationException (buildExceptionMessage (invalidProperties , beanName ));
123
146
}
124
147
this .validatedBeanNames .add (beanName );
125
148
}
126
149
return pvs ;
127
150
}
128
151
152
+ /**
153
+ * Check whether the given bean definition is not subject to the annotation-based
154
+ * required property check as performed by this post-processor.
155
+ * <p>The default implementations check for the presence of the
156
+ * {@link #SKIP_REQUIRED_CHECK_ATTRIBUTE} attribute in the bean definition, if any.
157
+ * @param beanFactory the BeanFactory to check against
158
+ * @param beanName the name of the bean to check against
159
+ * @return <code>true</code> to skip the bean; <code>false</code> to process it
160
+ */
161
+ protected boolean shouldSkip (ConfigurableListableBeanFactory beanFactory , String beanName ) {
162
+ return (beanFactory != null && beanFactory .containsBeanDefinition (beanName ) &&
163
+ Boolean .TRUE .equals (beanFactory .getBeanDefinition (beanName ).getAttribute (SKIP_REQUIRED_CHECK_ATTRIBUTE )));
164
+ }
165
+
129
166
/**
130
167
* Is the supplied property required to have a value (that is, to be dependency-injected)?
131
168
* <p>This implementation looks for the existence of a
0 commit comments