mybatis报错 Specified class is an interface
1.错误原因
Caused by: org.springframework.beans.factory.BeanCreationException:
Error creating bean with name ‘admUserMapper’ defined in file
[E:\idea_soft\workspace\xxxx-mircoservices\i\classes\main\com\imassbank\admin\mapper\AdmUserMapper-\classes\main\com\admin\mapper\AdmUserMapper.class]:
Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException:
Failed to instantiate [com.xxxxxx.mapper.AdmUserMapper]: Specified class is an interface
2.原因以及解决方案
1)原因: Mapper有重复的 例如 AdmUserMapper 在 a工程中有 但是 在b工程中 并且 叫相同的名字 导致 spring 在加载时 调用mapper解析器 导致出错
Mapper报错的名称可能不对,如上文AdmUserMapper,可能其他Mapper重复导致
NoSuchMethodException: tk.mybatis.mapper.provider.base.BaseInsertProvider.()
原因: 在启动类上的mapperScan注解导错包了,不能导入mybatis 要到tk的 tk.mybatis.spring.annotation.MapperScan