spring-boot启动报错

来源:4-2 transactional演示

txk

2018-08-12 16:56

Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'demoService': Unsatisfied dependency expressed through field 'userDao'; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'com.dao.UserDao' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}

写回答 关注

1回答

  • 张喜硕
    2018-08-13 10:17:03

    NoSuchBeanDefinitionException:No qualifying bean of type 'com.dao.UserDao' available

    com.dao.UserDao类型的Bean不可用,说明Spring在其IOC容器中找不到该类型的Bean,所以当demoService依赖UserDao时就会出错,可能是UserDao没有加@Component交给Spring IOC容器托管。

    可能不太正确,只是根据报错信息猜的,希望对你有帮助。

探秘Spring AOP

让我们一起探秘Spring Aop

61205 学习 · 59 问题

查看课程

相似问题