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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven+mybatis+spring xml文件没有编译到输出路径相关的知识,希望对你有一定的参考价值。

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>
    ...
    <resources>
        <!--编译之后包含xml-->
        <resource>
            <directory>src/main/java</directory>
            <includes>
                <include>**/*.xml</include>
            </includes>
            <filtering>true</filtering>
        </resource>
    </resources>
    ...
</build>


以上是关于maven+mybatis+spring xml文件没有编译到输出路径的主要内容,如果未能解决你的问题,请参考以下文章

mybatis学习笔记 -- maven+spring+mybatis从零开始搭建整合详细过程(下)

构建 struts2 spring3 mybatis 的maven项目 构建 pom.xml

Spring+SpringMVC+MyBatis+Maven框架整合

Spring+Mybatis+Maven

Spring + mybatis 集成

maven-spring-mybaties-restful 整合 有源码项目 内容实用