org.springframework.orm.hibernate3.HibernateSystemException: No default constructor for entity
Caused by: org.hibernate.InstantiationException: No default constructor for entity
实体内没有的默认构造函数
在Entity实体类里添加构造函数
public Entity() { super(); }
No default constructor for entity
原文:https://www.cnblogs.com/mjtabu/p/13212835.html