Mybatis调试1:org.apache.ibatis.exceptions.PersistenceException

一个Mybatis的Demo,本来搭建是ok的,新建的时候懒得手敲,拷贝过去后报错:

org.apache.ibatis.exceptions.PersistenceException

Mybatis调试1:org.apache.ibatis.exceptions.PersistenceException_第1张图片

映射如下:

Mybatis调试1:org.apache.ibatis.exceptions.PersistenceException_第2张图片

 

直译就是传递mapper配置出错,找不到所给的路径demo/mybatis/mydemo2/mapper/SignupMapper.xml,根据SignupMapper.xml文件中的配置检查项目路径果然少了一层,增加后正常

Mybatis调试1:org.apache.ibatis.exceptions.PersistenceException_第3张图片

你可能感兴趣的:(Mybatis)