在实体类中临时返回特定字段@Transient2024-02-20 16:57:58 指定不持久化特定字段 如果我们想让 secrect 这个字段不被持久化,可以使用 @Transient 关键字声明。 一般使用注解的方式比较多。 Entity(name="USER") public class User { ...... @Transient private String secrect; // not persistent because of @Transient } 上一篇:Java transient关键字的用法下一篇:Java集合(三):TreeMap-红黑树实现原理