吾爱破解 - LCG - LSG |安卓破解|病毒分析|www.52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1211|回复: 6
收起左侧

[Java 转载] spring框架no bean name问题分析

[复制链接]
yuluo829 发表于 2022-6-8 18:10

spring5 bug分析

问题复述

在一次使用ssm开发的时候,发现了此bug

public class TestGetBeanProductTypeServiceImpl {

    /**
     *  用于测试:
     */
    @Test
    public void test() {
        ClassPathXmlApplicationContext classPathXmlApplicationContext = new ClassPathXmlApplicationContext("spring/application-*.xml");

        String[] beanDefinitionNames = classPathXmlApplicationContext.getBeanDefinitionNames();
        for (String beanDefinitionName : beanDefinitionNames) {
            System.out.println("beanDefinitionName = " + beanDefinitionName);
        }

        ProductTypeService productTypeServiceImpl = (ProductTypeService) classPathXmlApplicationContext.getBean("ProductTypeServiceImpl");

        List<ProductType> all = productTypeServiceImpl.getAll();
        all.forEach(type -> System.out.println(type.toString()));
    }

}

代码如上所示:

我的配置文件:
image-20220608174000883.png

在获取productTypeServiceImpl的时候,第一次出现了异常

org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'ProductTypeServiceImpl' available

    at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeanDefinition(DefaultListableBeanFactory.java:808)
    at org.springframework.beans.factory.support.AbstractBeanFactory.getMergedLocalBeanDefinition(AbstractBeanFactory.java:1279)
    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:297)
    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:202)
    at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1108)
    at indi.yuluo.test.TestGetBeanProductTypeServiceImpl.test(TestGetBeanProductTypeServiceImpl.java:31)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
    at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
    at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
    at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
    at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57)
    at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
    at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
    at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
    at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
    at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
    at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
    at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
    at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:69)
    at com.intellij.rt.junit.IdeaTestRunner$Repeater$1.execute(IdeaTestRunner.java:38)
    at com.intellij.rt.execution.junit.TestsRepeater.repeat(TestsRepeater.java:11)
    at com.intellij.rt.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:35)
    at com.intellij.rt.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:235)
    at com.intellij.rt.junit.JUnitStarter.main(JUnitStarter.java:54)

第一次出现之后,我认为是bean id的问题,定义了bean id之后,同样是此问题,后来对比了配置文件之后,发现问题所在

正确代码:

ClassPathXmlApplicationContext classPathXmlApplicationContext = new ClassPathXmlApplicationContext("spring/applicationContex-*.xml");

问题分析

debug展开对问题的分析:

配置文件错误应该报出的是FileNotFoundException异常,为什么会No bean name异常?

经过分析,在深入了spring的源码之后

image-20220608174701899.png

在上下文环境配置的源码中org.springframework.context.support.AbstractApplicationContext

发现问题

此代码缺少对parent为空的处理,我认为此处应该报出一个FileNotFoundException异常, 而不是直接执行下一步。

反馈spring官方

此问题已经反馈spring官方

问题链接:https://github.com/spring-projects/spring-framework/issues/28584

免费评分

参与人数 1热心值 +1 收起 理由
来自天堂的问候 + 1 我很赞同!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

Todd 发表于 2022-6-8 21:52
????
"spring/application-*.xml",改成 "spring/applicationContex-*.xml" 没毛病
我寻思你你也没有application-xxxx.xml的文件啊,这是通配符的问题好不啦
Vvvvvoid 发表于 2022-6-9 00:25
文件解析用的通配符, 也不能给出明确的文件路径
而且 通配符 可以匹配多个文件, 报 FileNotFoundException 也不太合适,
最初的 Spring 也有人 一个Bean 配置一个 xml 文件,
比如  UserBean 未定义 , 报 NoSuchBeanDefinitionException  : UserBean  跟 FileNotFoundException : Context-*.xml , 你觉着哪个明了??

还有现在基本都在用 注解版的 SpringBoot 系列了
nuo010 发表于 2022-6-9 08:49
 楼主| yuluo829 发表于 2022-6-9 09:28
Todd 发表于 2022-6-8 21:52
????
"spring/application-*.xml",改成 "spring/applicationContex-*.xml" 没毛病
我寻思你你也没有 ...

不是,这个问题的重点是为什么没有报文件找不到异常?
 楼主| yuluo829 发表于 2022-6-9 09:30
Vvvvvoid 发表于 2022-6-9 00:25
文件解析用的通配符, 也不能给出明确的文件路径
而且 通配符 可以匹配多个文件, 报 FileNotFoundException ...

那有没有一种可能是,写了bean id,而配置文件没有写合适,却报了no bean name的异常,应该怎么处理
songjing 发表于 2022-6-11 17:40
最好分享一下csdn 博客园这些
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则 警告:本版块禁止灌水或回复与主题无关内容,违者重罚!

快速回复 收藏帖子 返回列表 搜索

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-5-2 18:53

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表