返回顶部
首页 > 资讯 > 后端开发 > JAVA >解决异常Error creating bean with name ‘xxxxxController‘: Unsatisfied dependency expressed through field
  • 119
分享到

解决异常Error creating bean with name ‘xxxxxController‘: Unsatisfied dependency expressed through field

java 2023-08-31 06:08:50 119人浏览 八月长安
摘要

解决异常Error creating bean with name ‘xxxxxController‘: Unsatisfied dependency expressed through field

解决异常Error creating bean with name ‘xxxxxController‘: Unsatisfied dependency expressed through field

错误信息如下:

Error creating bean with name 'datainteractionController': Unsatisfied dependency expressed through field 'busiSysInfoService'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'busiSysInfoServiceImpl': Unsatisfied dependency expressed through field 'baseMapper'; nested exception is org.springframework.beans.factory.**NoSuchBeanDefinitionException: No qualifying bean of type 'com.example.demo.mapper.BusiSysInfoMapper' available**: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}

分析

创建dataInteractionController这个bean出错,嵌套异常是busiSysInfoService不满足依赖,容器里面没有com.example.demo.mapper.BusiSysInfoMapper 的 实例,也就是说我们的busiSysInfoService对象不存在,导致注入失败,然后抛出了Error creating bean with name 'dataInteractionController这个异常,既然是busiSysInfoService这个对象的问题,那么我们就首先来分析,busiSysInfoService对象如何添加到容器,所以我们要看一下
1、busiSysInfoServiceImpl 是否加上@Service注解
2、busiSysInfoMapper 是否加上@Repository注解

如果以上都没有问题,考虑BusiSysInfo实体中各字段类型是否错误,如果都不存在,请一定考虑以下问题
在这里插入图片描述
沒有符合的bean可用

解决办法

这种情况在DemoApplication中添加@MapperScan(basePackages = {“com.example.demo.mapper”}),我的问题是这样解决的。
在这里插入图片描述
希望对大家有用

来源地址:https://blog.csdn.net/weixin_46870864/article/details/128132222

--结束END--

本文标题: 解决异常Error creating bean with name ‘xxxxxController‘: Unsatisfied dependency expressed through field

本文链接: https://lsjlt.com/news/384389.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作