博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Error creating bean with name 'userServiceImpl': Injection of autowired dependencies failed
阅读量:5974 次
发布时间:2019-06-19

本文共 1336 字,大约阅读时间需要 4 分钟。

hot3.png

严重: Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListener

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'userServiceImpl': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private cn.springmvc.dao.UserDAO cn.springmvc.service.impl.UserServiceImpl.userDAO; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [cn.springmvc.dao.UserDAO] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:288)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1116)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:519)

 

 

解决办法:

在你的service 实现类 impl 方法前加上 @service。

转载于:https://my.oschina.net/yuhangyes/blog/848597

你可能感兴趣的文章
mysql事务rollback&commit
查看>>
Node.js搭建Web服务器
查看>>
Shell脚本学习
查看>>
JAX-RS入门 五: 自动类型转换
查看>>
连连看 欢迎玩耍 :)
查看>>
JAVA经典算法40题(13)
查看>>
Java程序员,你的简历到底问题在哪?
查看>>
MaxCompute读取分析OSS非结构化数据的实践经验总结
查看>>
抽象的理解
查看>>
用Python自带的包建立简单的web服务器
查看>>
构建ant-framework框架的pom.xml文件配置
查看>>
SpringCloud之服务消费者Feign(三)
查看>>
Python运算符:算术,逻辑,比较,赋值,按位和优先
查看>>
LAMP架构介绍
查看>>
C#实现基于ffmpeg加虹软的人脸识别demo及开发分享
查看>>
ppwjs之bootstrap文字排版:创建缩小字号元素
查看>>
activiti--History 历史配置
查看>>
远程访问MySQL数据库
查看>>
探究分布式并发锁
查看>>
mysql 临时表和视图
查看>>