使用Hibernate保存对象时收到以下错误
object references an unsaved transient instance - save the transient instance before flushing
您应该在集合映射中包括cascade="all"(如果使用xml)或cascade=CascadeType.ALL(如果使用注释)。
cascade="all"
cascade=CascadeType.ALL
发生这种情况是因为您的实体中有一个集合,并且该集合具有一个或多个数据库中不存在的项目。通过指定以上选项,您可以告诉hibernate在保存其父项时将它们保存到数据库中。