本文主要是介绍nested exception is org.apache.ibatis.reflection.ReflectionException: Error instantiating interface,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Springboot 使用mybatis报错(traceback 太长就不全部放了):
- 总之错误提示如下:
Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: Error instantiating interface com.docker.apps.mapper.CustomerMapper with invalid types () or values (). Cause: java.lang.NoSuchMethodException: com.docker.apps.mapper.CustomerMapper.()] with root cause
这段话里面有几个地方可以看出这个错误的端倪
- ReflectionException
- Error instantiating interface
也就是无法映射成功的错误
然后我搜集了此类问题的发生可能性:
- 没有无参构造函数
- 缺少相关参数的get和set方法
- 需要明确指定封装的参数
只需要按序检查
- 我的措施是resultType错了(Error instantiating interface com.docker.apps.mapper.CustomerMapper ),误写成mapper的类,纯粹的低级错误。
这篇关于nested exception is org.apache.ibatis.reflection.ReflectionException: Error instantiating interface的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!