org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: org.apache.

org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: org.apache._第1张图片


这是我学习mybatis遇到的第一个异常:

异常类型为ibatis中持久性异常,具体就是说不完整的元素异常,无法在domain中找到结果集;

查看mapper.xml发现resultType写成resultMap了,导致异常发生。

org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: org.apache._第2张图片

将resultMap改成resultType,问题解决

在使用mybatis进行数据库连接操作时对于SQL语句返回结果的处理通常有两种方式,一种就是resultType另一种就是resultMap,

resultType:当使用resultType做SQL语句返回结果类型处理时,对于SQL语句查询出的字段在相应的pojo中必须有和它相同的字段对应,而resultType中的内容就是pojo在本项目中的位置。

resultMap:当使用resultMap做SQL语句返回结果类型处理时,通常需要在mapper.xml中定义resultMap进行pojo和相应表字段的对应。


你可能感兴趣的:(Exception,MyBatis)