码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2017-04-05 18:17:35      阅读:493      评论:0      收藏:0      [点我收藏+]

标签:spring   maven   mybatis   sqlsessionfactory   mapperlocations   

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文件没有编译到输出路径

标签:spring   maven   mybatis   sqlsessionfactory   mapperlocations   

原文地址:http://jincheng.blog.51cto.com/4625177/1913068

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!