1
我想設置的所有實體使用動態插入和動態更新,但避免對每個類的基礎上做到這一點:配置Hibernate JPA默認爲所有實體設置dynamicUpdate = true?
@javax.persistance.Entity
@org.hibernate.annotations.Entity(dynamicInsert = true, dynamicUpdate = true)
public class User
有沒有辦法打開的dynamicInsert和更新通過在整個默認entityfactory,這樣我可以省略第二個@Entity聲明?