org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'XX': Unsatisfied dependency expressed through field 'XX'
org.springframework.beans.factory.UnsatisfiedDependencyException:
Error creating bean with name 'xxxMapper' defined in file [xxxMapper.class]:
Unsatisfied dependency expressed through bean property 'sqlSessionFactory';
nested exception is org.springframework.beans.factory.BeanCreationException:
Error creating bean with name 'sqlSessionFactoryBean' defined in class path resource [xxxConfig.class]: Invocation of init method failed; nested exception is org.springframework.core.NestedIOException: Failed to parse mapping resource: 'file [xxmappersxxMapper.xml]';
报错:不满足依赖异常。创建名为’xx’的bean时出错,通过字段’sqlSessionFactory’表达的不满足的依赖项
一、配置与扫描问题:
spring配置文件中检查包是否扫描,仔细检查自己的配置文件里和相关的配置路径。
private String[] locations = {"classpath*:com/d1mgroup/wechat/estore/repository/*.xml"};
在application.yml文件中的配置:
二、注解问题:
Controller、service层的注解缺失会造成创建bean时出现错误
@Controller
三、依赖包缺失,检查pom配置文件
检查pom.xml文件下是否缺失依赖或者有多余的依赖,判断是否对bean的正常创建有影响
四、xml包中存在空文件:
在xxxMapper.xml的包中如果有空的xml文件,就会造成此Bug,这种情况的具体原因暂时不清楚
五、复制xml文件;文件名确实存在错误
以上都没解决问题,则直接备份一下mapper或者mapper.xml文件,将其删除,重新创建同名mapper或者mapper.xml文件,然后Maven clean 一下,重新Rebuild project
原文地址:https://blog.csdn.net/MinggeQingchun/article/details/128741702
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_21356.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。