问答详情
源自:4-2 Spring Bean装配之Autowired注解说明-1

No bean named 'injectionServiceImpl' is defined

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






提问者:慕粉3674784 2016-08-12 10:21

个回答

  • 化_十
    2016-08-12 11:59:10
    已采纳

    InjectionServiceImpl类上没有注入@Component等注解吧?