1
由於@org.hibernate.annotations.Entity(dynamicUpdate = true,dynamicInsert=true)
已棄用,嘗試使用@DynamicInsert
,@DynamicUpdate
但它似乎不適合我。 你可以建議我動態更新和使用hibernate註釋插入任何解決方案。休眠動態更新和使用註釋插入
由於@org.hibernate.annotations.Entity(dynamicUpdate = true,dynamicInsert=true)
已棄用,嘗試使用@DynamicInsert
,@DynamicUpdate
但它似乎不適合我。 你可以建議我動態更新和使用hibernate註釋插入任何解決方案。休眠動態更新和使用註釋插入
請使用,
@DynamicUpdate
組合,4.1.X版開始。此前,基於實體的指令已被棄用。如果會議不能重複使用,添加,
@SelectBeforeUpdate
也。
我不能肯定所有的4.1版本,但4.1.4和更高肯定會正常工作。
你使用的是哪個版本? –
hibernate-annotations 3.5.6-Final,hibernate-commons-annotations 3.2.0.Final,hibernate-core 4.1.4.Final,hibernate 3.5.4-Final – vashishth