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

所属分类: 数据库 / Mysql 阅读数: 1315
收藏 0 赞 0 分享

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

一、问题描述

写好配置文件用JUnit进行测试,一运行就报错:

org.apache.ibatis.exceptions.PersistenceException:  
### Error querying database. Cause: org.apache.ibatis.reflection.ReflectionException: Error instantiating class com.fendo.entity.Person with invalid types () or values (). Cause: java.lang.NoSuchMethodException: com.fendo.entity.Person.<init>() 
### The error may exist in com/fendo/entity/Person.xml 
### The error may involve defaultParameterMap 
### The error occurred while setting parameters 
### SQL: select * from person 
### Cause: org.apache.ibatis.reflection.ReflectionException: Error instantiating class com.fendo.entity.Person with invalid types () or values (). Cause: java.lang.NoSuchMethodException: com.fendo.entity.Person.<init>() 
  at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:23) 
  at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:107) 
  at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:98) 
  at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:114) 
  at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:58) 
  at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:43) 
  at com.sun.proxy.$Proxy6.getPersons(Unknown Source) 
  at com.fendo.test.TestMybatis.test(TestMybatis.java:40) 
  at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
  at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) 
  at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) 
  at java.lang.reflect.Method.invoke(Method.java:498) 
  at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50) 
  at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) 
  at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47) 
  at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) 
  at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) 
  at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) 
  at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325) 
  at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78) 
  at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57) 
  at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290) 
  at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71) 
  at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288) 
  at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58) 
  at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268) 
  at org.junit.runners.ParentRunner.run(ParentRunner.java:363) 
  at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86) 
  at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) 
  at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459) 
  at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:675) 
  at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382) 
  at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192) 
Caused by: org.apache.ibatis.reflection.ReflectionException: Error instantiating class com.fendo.entity.Person with invalid types () or values (). Cause: java.lang.NoSuchMethodException: com.fendo.entity.Person.<init>() 
  at org.apache.ibatis.reflection.factory.DefaultObjectFactory.instantiateClass(DefaultObjectFactory.java:83) 
  at org.apache.ibatis.reflection.factory.DefaultObjectFactory.create(DefaultObjectFactory.java:45) 
  at org.apache.ibatis.reflection.factory.DefaultObjectFactory.create(DefaultObjectFactory.java:38) 
  at org.apache.ibatis.executor.resultset.DefaultResultSetHandler.createResultObject(DefaultResultSetHandler.java:535) 
  at org.apache.ibatis.executor.resultset.DefaultResultSetHandler.createResultObject(DefaultResultSetHandler.java:514) 
  at org.apache.ibatis.executor.resultset.DefaultResultSetHandler.getRowValue(DefaultResultSetHandler.java:334) 
  at org.apache.ibatis.executor.resultset.DefaultResultSetHandler.handleRowValuesForSimpleResultMap(DefaultResultSetHandler.java:294) 
  at org.apache.ibatis.executor.resultset.DefaultResultSetHandler.handleRowValues(DefaultResultSetHandler.java:269) 
  at org.apache.ibatis.executor.resultset.DefaultResultSetHandler.handleResultSet(DefaultResultSetHandler.java:239) 
  at org.apache.ibatis.executor.resultset.DefaultResultSetHandler.handleResultSets(DefaultResultSetHandler.java:153) 
  at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:57) 
  at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:70) 
  at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:57) 
  at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:259) 
  at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:132) 
  at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:105) 
  at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:81) 
  at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:104) 
  ... 31 more 
Caused by: java.lang.NoSuchMethodException: com.fendo.entity.Person.<init>() 
  at java.lang.Class.getConstructor0(Class.java:3082) 
  at java.lang.Class.getDeclaredConstructor(Class.java:2178) 
  at org.apache.ibatis.reflection.factory.DefaultObjectFactory.instantiateClass(DefaultObjectFactory.java:57) 
  ... 48 more 

二、解决方法

从上面的异常可以看出: Java.lang.NoSuchMethodException: com.fendo.entity.Person.<init>()

person这个实体类不能初始化,不能初始化的原因可能是没有构造方法,然后我查看了下类确实没有构造方法,为他添加个构造方法,就可以了。

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

更多精彩内容其他人还在看

mysql多表连接查询实例讲解

本篇文章中给大家通过实例代码讲述了mysql多表连接查询的方法,有需要的朋友们可以参考学习下。
收藏 0 赞 0 分享

MySQL设置global变量和session变量的两种方法详解

这篇文章主要介绍了MySQL设置global变量和session变量的两种方法,每种方法给大家介绍的非常详细 ,需要的朋友可以参考下
收藏 0 赞 0 分享

8种手动和自动备份MySQL数据库的方法

作为流行的开源数据库管理系统,MySQL的使用者众多,为了维护数据安全性,数据备份是必不可少的。本文就为大家介绍几种适用于企业的数据备份方法,需要的朋友可以参考下
收藏 0 赞 0 分享

使用JDBC连接Mysql数据库会出现的问题总结

这篇文章主要给大家介绍了关于使用JDBC连接Mysql数据库会出现的问题的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

Ubuntu中MySQL的参数文件my.cnf示例详析

这篇文章主要给大家介绍了关于Ubuntu中MySQL的参数文件my.cnf的相关资料,文中通过示例代码介绍的非常详细,对大家学习或者使用mysql具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

解决启动MongoDB错误:error while loading shared libraries: libstdc++.so.6:cannot open shared object file:

本文提供了解启动MongoDB时提示:error while loading shared libraries: libstdc++.so.6: cannot open shared object file: 错误的解决方案
收藏 0 赞 0 分享

PHP定时备份MySQL与mysqldump语法参数详解

本文为大家介绍了PHP利用mysqldump命令定时备份MySQL与mysqldump语法参数大全以及定时备份的PHP实例代码
收藏 0 赞 0 分享

定时备份 Mysql并上传到七牛的方法

常见的 MySQL 数据备份方式有,直接打包复制对应的数据库或表文件(物理备份)、mysqldump 全量逻辑备份、xtrabackup 增量逻辑备份等。这篇文章主要介绍了定时备份 MySQL 并上传到七牛 ,需要的朋友可以参考下
收藏 0 赞 0 分享

MySQL锁(表锁,行锁,共享锁,排它锁,间隙锁)使用详解

本文全面讲解了MySQL中锁包括表锁,行锁,共享锁,排它锁,间隙锁的详细使用方法
收藏 0 赞 0 分享

MySQL中的排序函数field()实例详解

这篇文章主要给大家介绍了关于MySQL中排序函数field()的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
收藏 0 赞 0 分享
查看更多