MyBatisError parsing SQL Mapper Configuration. Cause: java.io.IOException: Could not find resource(代
Posted The Gao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MyBatisError parsing SQL Mapper Configuration. Cause: java.io.IOException: Could not find resource(代相关的知识,希望对你有一定的参考价值。
我出现这个问题是由于我用的是注解开发,即@Select,但是在配置mybatis-config.xml文件时,用的映射是resource的方式。
<mappers>
<mapper resource="com/gzh/dao/*Mapper.xml"/>
</mappers>
这里应该用class或者package的方式配置,以下两种方式均可。
<mappers>
<mapper class="com.gzh.dao.UserMapper"/>
</mappers>
<mappers>
<package name="com.gzh.dao"/>
</mappers>
以上是关于MyBatisError parsing SQL Mapper Configuration. Cause: java.io.IOException: Could not find resource(代的主要内容,如果未能解决你的问题,请参考以下文章
PARSE_DATE : 解析函数 BigQuery/Standard SQL 的结果无效