jpa 映射中的遗漏字段

示例

@Entity
class Note {
    @Id
    Integer id;
 
    @Basic
    String note;

    @Transient
    String parsedNote;

    String readParsedNote() {
        if (parsedNote == null) { /* initialize from note */ }
        return parsedNote;
    }
}

如果您的班级需要不应该写入数据库的字段,请将其标记为@Transient。从数据库中读取后,该字段将为null。