異常:
org.springframework.orm.hibernate3.HibernateSystemException: No default constructor for entity
Caused by: org.hibernate.InstantiationException: No default constructor for entity
原因:
實體內沒有的默認構造函數
解決:
在Entity實體類里添加構造函數
public Entity() { super(); }