错误/异常:org.hibernate.id.IdentifierGenerationException: ids for this class must be manually assigned before calling save() 的解决方法

时间:2021-05-26 14:25:54

1、错误/异常视图

错误/异常:org.hibernate.id.IdentifierGenerationException: ids for this class must be manually assigned before calling save() 的解决方法

错误/异常描述:id的生成错误,在调用save()方法之前,必须先生成id。

2、解决方法

    在对应的实体类的主键(id)的get方法上加上:@GeneratedValue(strategy = GenerationType.AUTO)  这句话即可。括号中的值,根据你使用的数据库类型改。

错误/异常:org.hibernate.id.IdentifierGenerationException: ids for this class must be manually assigned before calling save() 的解决方法

错误/异常:org.hibernate.id.IdentifierGenerationException: ids for this class must be manually assigned before calling save() 的解决方法

原创作者:DSHORE

作者主页:http://www.cnblogs.com/dshore123/

原文出自:https://www.cnblogs.com/dshore123/p/11545171.html

欢迎转载,转载务必说明出处。(如果本文对您有帮助,可以点击一下右下角的 推荐,或评论,谢谢!