码迷,mamicode.com
首页 > 其他好文 > 详细

在idea中mybatis错误(1)

时间:2016-11-06 14:02:58      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:find   rod   xml文件   error   配置文件   资源   路径   bat   its   

错误提示为:

### Error building SqlSession.
### The error may exist in cn/qd/mybatis/map/productMapper.xml
### Cause: org.apache.ibatis.builder.BuilderException: Error parsing SQL Mapper Configuration. Cause: java.io.IOException: Could not find resource cn/qd/mybatis/map/productMapper.xml

问题:在全局配置文件Configure.xml

<mappers>
<mapper resource="cn/qd/mybatis/map/productMapper.xml"/>
</mappers>
无法找到资源的路径,在idea中貌似无法识别productMapper.xml

问题解决:既然找不到.xml文件,那么就在maven编译时将.xml文件放进去。即:在pom.xml文件的<build>标签中,加入
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
</includes>
<filtering>true</filtering>
</resource>
</resources>

原文出自:http://blog.csdn.net/witsmakemen/article/details/46913425

在idea中mybatis错误(1)

标签:find   rod   xml文件   error   配置文件   资源   路径   bat   its   

原文地址:http://www.cnblogs.com/Zhouya/p/6034912.html

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