标签: java hibernate
如何配置Hibernate以忽略具有insert& amp;的某些特殊值的属性更新? THX。
答案 0 :(得分:0)
您需要对字段(在实体内部)使用@Transient注释,这些注释需要在持久性中被忽略。
@Transient
此注释指定属性或字段不是 持久性。
@Entity public class Employee { @Id int id; @Transient String ignoreMe; }
您可以查看here