为什么JPA有@Transient注释? [英] Why does JPA have a @Transient annotation?

查看:1282
本文介绍了为什么JPA有@Transient注释?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Java有瞬态关键字。为什么JPA有 @Transient ,而不是简单地使用现有的Java的关键字?

Java has the transientkeyword. Why does JPA have @Transient instead of simply using the already existing java keyword?

推荐答案

Java的瞬态关键字用来表示一个字段不被序列化,而JPA的 @Transient 注释用于表明一个字段不应被在数据库中持续存在,即它们的语义是不同的。

Java's transient keyword is used to denote that a field is not to be serialized, whereas JPA's @Transient annotation is used to indicate that a field is not to be persisted in the database, i.e. their semantics are different.

这篇关于为什么JPA有@Transient注释?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆