报错:
org.springframework.orm.jpa.JpaSystemException: No default constructor for entity: : com.imooc.dataobject.ProductCategory; nested exception is org.hibernate.InstantiationException: No default constructor for entity: : com.imooc.dataobject.ProductCategory
解决方法:
No default constructor for entity:...ProductCategory...
表示在没有ProductCategory中没有一个构造方法。
在 ProductCategory 中添加一个无参的构造方法就可以了: