为了账号安全,请及时绑定邮箱和手机立即绑定

我有个问题??????

package main.java.com.xiaodao.bean;
public class BeanScope {
public void say(){
System.out.println("BeanScope say:" +this.hashCode());
}
}
<?xml version="1.0" encoding="UTF-8" ?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd" >
        
        <bean id="beanScope" class="main.java.com.xiaodao.bean.BeanScope" scope="singleton"></bean>
        
 </beans>
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.BlockJUnit4ClassRunner;
import main.java.com.xiaodao.bean.BeanScope;
import test.java.com.xiaodao.test.base.UnitTestBase;
@RunWith(BlockJUnit4ClassRunner.class)
public class TestBeanScope extends UnitTestBase {
public TestBeanScope() {
super("classpath*:spring-beanscope.xml");
}
@Test
public void testSay() {
BeanScope beanScope = super.getBean("beanScope");
beanScope.say();
}
}



运行报错,No bean named 'beanScope' is defined

找不到定义为beanScope的bean


正在回答

1 回答

BeanScope类上是不是应该加个@Service注解

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

我有个问题??????

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信