慕粉3674784
2016-08-12 10:21
public class TestInjection extends UnitTestBase{
public TestInjection(){
super("classpath*:spring-annotation.xml");
}
@Test
public void testAutoWired(){
InjectionService service =super.getBean("injectionServiceImpl");
service.save("autowired");
}
}
spring-annotation.xml:
<context:component-scan base-package="com.sbk.annotation"></context:component-scan>
错误:org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'injectionServiceImpl' is defined
InjectionServiceImpl类上没有注入@Component等注解吧?
Spring入门篇
268787 学习 · 963 问题
相似问题