@Transient 注解和瞬态修饰符有啥区别

Posted

技术标签:

【中文标题】@Transient 注解和瞬态修饰符有啥区别【英文标题】:What the difference between @Transient annotation and transient modifier@Transient 注解和瞬态修饰符有什么区别 【发布时间】:2019-12-18 06:15:33 【问题描述】:

假设我有一个这样的实体。字段a和b有什么区别?

public class Human implements Serializable
   public transient String a;

   @Transient
   public String b;


【问题讨论】:

这能回答你的问题吗? Why does JPA have a @Transient annotation? 【参考方案1】:

transient 是关于不序列化该字段,而@Transient 是关于不持久化该字段

【讨论】:

以上是关于@Transient 注解和瞬态修饰符有啥区别的主要内容,如果未能解决你的问题,请参考以下文章