Mybatis报错org.apache.ibatis.exceptions.PersistenceException解决方法

Mybatis初学遇到的错误

org.apache.ibatis.exceptions.PersistenceException: 
### Error querying database.  Cause: java.lang.NullPointerException
### The error may exist in cn/edu/zut/dao/UserMapperImpl.xml
### The error may involve cn.edu.zut.dao.UserMapper.getUserList
### The error occurred while executing a query
### Cause: java.lang.NullPointerException
  • 如题,每个人错误都不同,解决方法也不同。我的是因为没有在核心配置文件中加驱动造成的。以前写jdbc的时候不用加载驱动,但是mybatis不加驱动就会给你报个上面的错误,尴尬,排了好久。
    Mybatis报错org.apache.ibatis.exceptions.PersistenceException解决方法_第1张图片

你可能感兴趣的:(Mybatis)