类 AnnotationBeanNameGenerator
- java.lang.Object
- org.springframework.context.annotation.AnnotationBeanNameGenerator
- 所有已实现的接口:
BeanNameGenerator
public class AnnotationBeanNameGenerator extends Object implements BeanNameGenerator
BeanNameGeneratorimplementation for bean classes annotated with the@Componentannotation or with another annotation that is itself annotated with@Componentas a meta-annotation. For example, Spring's stereotype annotations (such as@Repository) are themselves annotated with@Component.Also supports Java EE 6's
ManagedBeanand JSR-330'sNamedannotations, 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
- 从以下版本开始:
- 2.5
- 作者:
- Juergen Hoeller, Mark Fisher
- 另请参阅:
Component.value(),Repository.value(),Service.value(),Controller.value(),Named.value()
构造器概要
构造器 构造器 说明 AnnotationBeanNameGenerator()
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 protected StringbuildDefaultBeanName(BeanDefinition definition)Derive a default bean name from the given bean definition.protected StringbuildDefaultBeanName(BeanDefinition definition, BeanDefinitionRegistry registry)Derive a default bean name from the given bean definition.protected StringdetermineBeanNameFromAnnotation(AnnotatedBeanDefinition annotatedDef)Derive a bean name from one of the annotations on the class.StringgenerateBeanName(BeanDefinition definition, BeanDefinitionRegistry registry)Generate a bean name for the given bean definition.protected booleanisStereotypeWithNameValue(String annotationType, Set<String> metaAnnotationTypes, Map<String,Object> attributes)Check whether the given annotation is a stereotype that is allowed to suggest a component name through its annotationvalue().
构造器详细资料
AnnotationBeanNameGenerator
public AnnotationBeanNameGenerator()
方法详细资料
generateBeanName
public String generateBeanName(BeanDefinition definition, BeanDefinitionRegistry registry)
从接口复制的说明:BeanNameGeneratorGenerate a bean name for the given bean definition.- 指定者:
generateBeanName在接口中BeanNameGenerator- 参数:
definition- the bean definition to generate a name forregistry- the bean definition registry that the given definition is supposed to be registered with- 返回:
- the generated bean name
determineBeanNameFromAnnotation
protected String determineBeanNameFromAnnotation(AnnotatedBeanDefinition annotatedDef)
Derive a bean name from one of the annotations on the class.- 参数:
annotatedDef- the annotation-aware bean definition- 返回:
- the bean name, or
nullif none is found
isStereotypeWithNameValue
protected boolean isStereotypeWithNameValue(String annotationType, Set<String> metaAnnotationTypes, Map<String,Object> attributes)
Check whether the given annotation is a stereotype that is allowed to suggest a component name through its annotationvalue().- 参数:
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 annotation- 返回:
- whether the annotation qualifies as a stereotype with component name
buildDefaultBeanName
protected String buildDefaultBeanName(BeanDefinition definition, BeanDefinitionRegistry registry)
Derive a default bean name from the given bean definition.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 with- 返回:
- the default bean name (never
null)
buildDefaultBeanName
protected String buildDefaultBeanName(BeanDefinition definition)
Derive a default bean name from the given bean 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 for- 返回:
- the default bean name (never
null)