spring bean name生成规则

现象:

PVService

PVServiceImpl ===>名称就是PVServiceImpl, 首字母没有小写

PageViewServiceImpl ==>名称是pageViewServiceImpl, 首字母小写

原因:org.springframework.context.annotation.AnnotationBeanNameGenerator#buildDefaultBeanName(org.springframework.beans.factory.config.BeanDefinition)

 使用java.beans.Introspector#decapitalize 生成默认的beanName,  当前两个字符都是大写时 beanName保持大写不变

webApplicationContext.getBeanNamesForType(PageViewService.class)

  

原文地址:https://www.cnblogs.com/yszzu/p/9897955.html