從對映中省略欄位
@Entity
class Note {
@Id
Integer id;
@Basic
String note;
@Transient
String parsedNote;
String readParsedNote() {
if (parsedNote == null) { /* initialize from note */ }
return parsedNote;
}
}
如果你的類需要不應寫入資料庫的欄位,請將它們標記為 @Transient
。從資料庫中讀取後,該欄位將為 null
。