报错信息:
The error may exist in com/keafmd/IUserDao.xml
Cause: org.apache.ibatis.builder.BuilderException: Error parsing SQL Mapper Configuration. Cause: java.io.IOException: Could not find resource com/keafmd/IUserDao.xml
我在mybatis的入门案例中碰到了这个问题,提示找不到IUserDao.xml文件。
可是我有这个文件,但是因为我在右键新建文件夹的时候是直接输入的com.keafmd.dao。
正确做法(解决办法)
一级一级的创建文件夹
先右键创建文件夹com,然后点击com再右键创建文件夹keafmd,再点击keafmd右键创建文件夹dao,最后再创建IUserDao.xml文件。
以上就是Could not find resource com/keafmd/IUserDao.xml报错解决的全部内容。