我正在尝试使用@Embeddable
with来根据嵌入属性CriteriaBuilder
过滤父级的结果。Entity
我使用 Eclipse Link 生成元数据类。
这是嵌入式类/实体:
@Embeddable
public class Stamp implements Serializable {
@Basic()
@Column(name = "stamp_year", nullable = false)
private int year;
父类Stamp
作为成员:
@Entity(name = "Message")
public class Message implements Serializable {
@Embedded
private Stamp stamp = new Stamp();
现在这段代码应该使用Message
类并根据嵌入的类属性年份过滤结果:
CriteriaBuilder cb = em.getCriteriaBuilder();
CriteriaQuery<Message> cq = cb.createQuery(Message.class);
Root<Message> root = cq.from(Message.class);
Predicate p = cb.conjunction();
p = ??????
cq.where(p);
TypedQuery<Message> tq = em.createQuery(cq);
List<Message> messages = tq.getResultList();
在第 5 行,我如何到达查询的 Message->Stamp->Year 元素?
这是生成的元模型类:
@StaticMetamodel(Message.class)
public class Message_ {
public static volatile SingularAttribute<Message, Stamp> stamp;
和:
@StaticMetamodel(Stamp.class)
public class Stamp_ {
public static volatile SingularAttribute<Stamp, Integer> year;
注意:为了代码清晰,我删除了所有不相关的信息,但完整的代码可以在 GitHub 上找到: prototype