@Transient注解----Hiberbate

Posted BillYu

tags:

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

@Transient表示该属性并非一个到数据库表的字段的映射,将会忽略该属性.
如果一个属性并非数据库表的字段映射,就务必将其标示为@Transient,否则,ORM框架默认其注解为@Basic
  Example:

    @Entity
    public class Employee {
        @Id 
     int id; @Transient
     User currentUser; ... }

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

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

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

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

Spring Data JPA 常用注解 @Query@NamedQuery

@Transient

Hiberbate