gpt4 book ai didi

java - 为什么 JPA 元模型中的所有字段均为空?

转载 作者:行者123 更新时间:2023-11-30 01:48:42 25 4
gpt4 key购买 nike

我正在学习 JPA 标准和元模型。我找到了以下元模型示例:

@StaticMetamodel( Person.class )
public class Person_ {
public static volatile SingularAttribute<Person, Long> id;
public static volatile SingularAttribute<Person, String> name;
public static volatile SingularAttribute<Person, Integer> age;
public static volatile SingularAttribute<Person, Address> address;
public static volatile SetAttribute<Person, Order> orders;
}

此元模型的所有字段均为空。那么,谁能解释一下 JPA 提供程序将如何获取,例如以下示例中的字段名称:

criteria.where(builder.equal( personRoot.get( Person_.age ), 50));

最佳答案

这些字段在运行时不为空,因为 JPA 实现将所有这些公共(public)静态字段设置为非空值。

规范摘录(6.2.2 - Bootstrapping):

When the entity manager factory for a persistence unit is created, it is the responsibility of the persistence provider to initialize the state of the metamodel classes of the persistence unit.

关于java - 为什么 JPA 元模型中的所有字段均为空?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56868797/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com