在实体类中临时返回特定字段@Transient

指定不持久化特定字段

如果我们想让 secrect 这个字段不被持久化,可以使用 @Transient 关键字声明。
一般使用注解的方式比较多。
Entity(name="USER")
public class User {
......
@Transient
private String secrect; // not persistent because of @Transient
}
上一篇:Java transient关键字的用法


下一篇:Java集合(三):TreeMap-红黑树实现原理