从映射中省略字段
@Entity
class Note {
@Id
Integer id;
@Basic
String note;
@Transient
String parsedNote;
String readParsedNote() {
if (parsedNote == null) { /* initialize from note */ }
return parsedNote;
}
}
如果你的类需要不应写入数据库的字段,请将它们标记为 @Transient
。从数据库中读取后,该字段将为 null
。