org.apache.ibatis.exceptions.PersistenceException: ### Error updating database.报错解决办法

org.apache.ibatis.exceptions.PersistenceException: 
### Error updating database.  Cause: java.lang.IllegalArgumentException: Mapped Statements collection does not contain value for StudentMapper.xml
### Cause: java.lang.IllegalArgumentException: Mapped Statements collection does not contain value for StudentMapper.xml

学习mybitis初期会遇到报 Error updating database. 错误更新数据库

有可能是刚开始没了解清楚原理,把应该连接的类中方法写成了连接xml配置文件.修改一下就好了.
例:update就是方法,或者是insert,delete等在这里插入图片描述
如果写为xml配置文件就会报错,把xml改为相应方法就可以了
在这里插入图片描述

你可能感兴趣的:(mybatis,数据库,mysql,java,jdbc)