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)

  

posted @ 2018-11-02 19:07  funny_coding  阅读(1299)  评论(0编辑  收藏  举报
build beautiful things, share happiness