public class AnnotationBeanNameGenerator extends java.lang.Object implements BeanNameGenerator
BeanNameGenerator
implementation for bean classes annotated with the
@Component
annotation
or with another annotation that is itself annotated with
@Component
as a
meta-annotation. For example, Spring's stereotype annotations (such as
@Repository
) are
themselves annotated with
@Component
.
Also supports Java EE 6's ManagedBean
and
JSR-330's Named
annotations, if available. Note that
Spring component annotations always override such standard annotations.
If the annotation's value doesn't indicate a bean name, an appropriate name will be built based on the short name of the class (with the first letter lower-cased). For example:
com.xyz.FooServiceImpl -> fooServiceImpl
Component.value()
,
Repository.value()
,
Service.value()
,
Controller.value()
,
Named.value()
Constructor and Description |
---|
AnnotationBeanNameGenerator() |
Modifier and Type | Method and Description |
---|---|
protected java.lang.String |
buildDefaultBeanName(BeanDefinition definition)
Derive a default bean name from the given bean definition.
|
protected java.lang.String |
buildDefaultBeanName(BeanDefinition definition,
BeanDefinitionRegistry registry)
Derive a default bean name from the given bean definition.
|
protected java.lang.String |
determineBeanNameFromAnnotation(AnnotatedBeanDefinition annotatedDef)
Derive a bean name from one of the annotations on the class.
|
java.lang.String |
generateBeanName(BeanDefinition definition,
BeanDefinitionRegistry registry)
Generate a bean name for the given bean definition.
|
protected boolean |
isStereotypeWithNameValue(java.lang.String annotationType,
java.util.Set<java.lang.String> metaAnnotationTypes,
java.util.Map<java.lang.String,java.lang.Object> attributes)
Check whether the given annotation is a stereotype that is allowed
to suggest a component name through its annotation
value() . |
public java.lang.String generateBeanName(BeanDefinition definition, BeanDefinitionRegistry registry)
BeanNameGenerator
generateBeanName
in interface BeanNameGenerator
definition
- the bean definition to generate a name forregistry
- the bean definition registry that the given definition
is supposed to be registered with@Nullable protected java.lang.String determineBeanNameFromAnnotation(AnnotatedBeanDefinition annotatedDef)
annotatedDef
- the annotation-aware bean definitionnull
if none is foundprotected boolean isStereotypeWithNameValue(java.lang.String annotationType, java.util.Set<java.lang.String> metaAnnotationTypes, @Nullable java.util.Map<java.lang.String,java.lang.Object> attributes)
value()
.annotationType
- the name of the annotation class to checkmetaAnnotationTypes
- the names of meta-annotations on the given annotationattributes
- the map of attributes for the given annotationprotected java.lang.String buildDefaultBeanName(BeanDefinition definition, BeanDefinitionRegistry registry)
The default implementation delegates to buildDefaultBeanName(BeanDefinition)
.
definition
- the bean definition to build a bean name forregistry
- the registry that the given bean definition is being registered withnull
)protected java.lang.String buildDefaultBeanName(BeanDefinition definition)
The default implementation simply builds a decapitalized version of the short class name: e.g. "mypackage.MyJdbcDao" -> "myJdbcDao".
Note that inner classes will thus have names of the form "outerClassName.InnerClassName", which because of the period in the name may be an issue if you are autowiring by name.
definition
- the bean definition to build a bean name fornull
)