对瞬态变量注解@Basic

发布于 2024-12-17 17:50:50 字数 225 浏览 1 评论 0原文

我有一个 POJO 类,其中包括:
- 持久属性,
- 瞬态特性。

在编写 HQL 时,我考虑了两者:持久属性和瞬态属性。 即 HQL 像 select persist_properties,transient_prop from Pojo_classname

是正确的吗?

我可以为瞬态变量编写 @Basic 注解吗?

I am having a POJO class which consists of:
- persistent properties,
- transient properties.

While writing HQL I considered both: persistent and transient properties.
I.e. HQL like select persistent_properties,transient_prop from Pojo_classname

is it correct?

Can I write @Basic annotation to transient variables?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

云朵有点甜 2024-12-24 17:50:50

不,这是不正确的。 HQL 查询转换为 SQL。 @Transient 属性不在数据库中,因此 SQL 查询将无法查询该属性。

@Basic@Transient 是矛盾的。第一个告诉“这个属性是持久的”,第二个告诉“这个属性不是持久的”。

如果您谈论的是 Java transient 关键字,而不是 @Transient 注释,那么可以查询 transient 字段,并且用@Basic注释。 transient 关键字与持久性无关,只与对象的二进制序列化有关。

No, it's not correct. A HQL query translates to SQL. An @Transient property is not in the database, so the SQL query won't be able to query over this property.

@Basic and @Transient are contradictory. The first one tells "this property is persistent" and the second one tells "This property is not persistent".

If you're talking about the Java transient keyword, and not about the @Transient annotation, then yes, a transient field may be queried and annotated with @Basic. The transient keyword has nothing to do with persistence, only with binary serialization of the object.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文