首页 > 代码库 > 在idea中mybatis错误(1)
在idea中mybatis错误(1)
错误提示为:
### 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)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。