maven+mybatis+spring mapping下的xml文件没有编译到输出路径

在maven+mybatis+spring集成开发时遇到错误,由于XML映射文件未被编译到输出路径,导致Bean创建失败。具体表现为Spring无法找到mapperLocations指定的资源。解决方案是在pom.xml的build部分增加配置,确保XML文件能被正确打包。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

maven+mybatis+spring在开发的时候,遇到如下错误:

org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name ‘xxxService’: Unsatisfied dependency expressed through field ‘xxxMapper’; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘xxxMapper’ defined in file [xxxMapper.class]: Cannot resolve reference to bean ‘sqlSessionFactory’ while setting bean property ‘sqlSessionFactory’; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘sqlSessionFactory’ defined in class path resource [xxx-mybatis.xml]: Initialization of bean failed; nested exception is org.springframework. beans.TypeMismatchException: Failed to convert property value of type ‘java.lang.String’ to required type ‘org.springframework.core.io.Resource[]’ for property ‘mapperLocations’; nested exception is java.lang.IllegalArgumentException: Could not resolve resource location pattern [classpath:com/xxx/xxx/mapping/*.xml]: class path resource [com/xxx/xxx/mapping/] cannot be resolved to URL because it does not exist

经过检查发现maven编译后并没有将xml文件打包到输出路径,导致bean创建失败。
因此解决方法就是在pom文件的build域中添加如下代码:

<build>
    ...
    <resources>
        <!--编译之后包含xml-->
        <resource>
            <directory>src/main/java</directory>
            <includes>
                <include>**/*.xml</include>
            </includes>
            <filtering>true</filtering>
        </resource>
    </resources>
    ...
</build>
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值