我正在eclipse中使用spring 4.0
和hibernate 4.0.1
项目并使用oracle作为数据库。如果我在数据库中进行一些更改,那么更改不会受到eclipse的影响。例如。我在oracle中生成id,这段代码在eclipse中成功执行。但之后我再次在数据库中进行了一些更改,相同的代码没有运行它给我的错误
org.hibernate.id.IdentifierGenerationException: ids for this class must be manually assigned before calling save():
请帮我解决这个问题。
答案 0 :(得分:1)
您的例外的含义是 ID未正确设置。错误在您的映射中。如果您使用sequence
来递增ID,您还必须在映射中执行此操作。以下:
@GeneratedValue(generator = "yourSequenceName", strategy=GenerationType.SEQUENCE)
private int id;
我希望这会对你有所帮助。