springboot实例化失败Unsatisfied dependency expressed through bean property

当遇到SpringBoot的Unsatisfied dependency expressed through bean property错误时,可能的原因包括mapper.xml文件路径错误、未被正确加载、Maven未加载mybatis依赖、启动类缺少扫描包配置等。解决方案涉及检查mapper.xml的命名和位置、确认SpringBoot是否加载xml文件、配置Maven放行xml资源等。
摘要由CSDN通过智能技术生成

1.查看**mapper.xml文件的空间包名和类名有没有错

 

2.SpringBoot加载了**mapper.xml文件

 

3.确保Maven加载了mybatis相关的maven

4.启动类上加载相应的扫描包

 

5.如果mapper.xml被Maven给拦截了,会导致加载不上,从而无法实例化sqlSessionFactory,这时需要配置放行

<build>
        <!-- 添加资源 -->
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <!-- src/main/resources下的指定资源放行 -->
                <includes>
                    <include>**/*.properties</include>
                    <include>**/*.yml</include>
                    <include>**/*.xml</include>
                </includes>
                <filtering>false</filtering>
            </resource>
        </resources>

</build>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值