Could not getconstructor for org.hibernate.persister.entity.SingleTableEntityPersister
“Unableto instantiate default tuplizer[org.hibernate.tuple.entity.PojoEntityTuplizer]
同时有两个错误:
配置文件错误:
解决方法:
(1)注意实体类,要写好标准的javabeans,特别要注意一定要有无参数的构造函数;
(2)实体类的映射文件是否出错,注意大小写,与数据表的表名是否一致;
(3)特别小心hibernate.cfg.xml文档中<mapping>是否有写错映射文件路径等。
Exception in thread "main" org.hibernate.MappingException:Unknown entity: com.imooc.entity.Project
这种错误一般是没有配置映射文件的路径