Cause: org.apache.ibatis.builder.BuilderException: Error parsing SQL Mapper Configuration. Cause: java.io.IOException: Could not find resource com.itheima.dao.IUserDao.xml
学习Mybatis框架时,运行程序出现异常,仔细查看发现自己出现错误的地方。
查看myBatis的配置文件SqlMapConfig.xml文件发现,映射配置文件写的有问题
<!--指定映射文件的位置,映射配置文件指的是每个dao独立的配置文件-->
<mappers>
<mapper resource="com.itheima.dao.IUserDao.xml"/>
</mappers>
应该为:
<!--指定映射文件的位置,映射配置文件指的是每个dao独立的配置文件-->
<mappers>
<mapper resource="com/itheima/dao/IUserDao.xml"/>
</mappers>