JPA之@Transient

Posted 仅此而已-远方

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JPA之@Transient相关的知识,希望对你有一定的参考价值。

java 的transient关键字的作用是需要实现Serilizable接口,将不需要序列化的属性前添加关键字transient,序列化对象的时候,这个属性就不会序列化到指定的目的地中。

使用示例:

import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Transient;

@Entity
public class OrderEntity {
    
    @Id
    //...
    private String id;

    /**
     * 附件id不需要持久化
     */
    @Transient
    private String attachMgr;

}

transient 使用小结:
 1)一旦变量被transient修饰,变量将不再是对象持久化的一部分,该变量内容在序列化后无法获得访问。

 2)transient关键字只能修饰变量,而不能修饰方法和类。注意,本地变量是不能被transient关键字修饰的。变量如果是用户自定义类变量,则该类需要实现Serializable接口。

 3)被transient关键字修饰的变量不再能被序列化,一个静态变量不管是否被transient修饰,均不能被序列化。

 

相关参考资料:transient关键字使用小记

 

以上是关于JPA之@Transient的主要内容,如果未能解决你的问题,请参考以下文章

Hibernate JPA中@Transient@JsonIgnoreProperties@JsonIgnore@JsonFormat@JsonSerialize等注解解释

使用 JPA 2.1,我如何将本机查询结果映射到 @Transient 字段(taht is a Set)?

java中transient的用法

@Transient 注解对方法意味着啥?

JPA 的瞬态关键字未按预期工作

Spring Data JPA 常用注解 @Query@NamedQuery