如何使用 Criteria Query select 仅外键值?

How to select just the foreign key value using Criteria Query?

假设我有两个实体:

@Entity
public class A {

    @Id
    private int id;

    @ManyToOne
    private B b; 

    //more attributes
}

@Entity
public class B {

    @Id
    private int id;
}

所以,A 的 table 有一个列 b_id 作为外键。

现在,我想 select 只是 b_id 基于其他字段的一些标准。我如何使用标准查询来做到这一点?

我尝试执行以下操作,抛出 IllegalArgumentException 说 "Unable to locate Attribute with the given name [b_id] on this ManagedType [A]"

    CriteriaQuery<Integer> criteriaQuery = criteriaBuilder.createQuery(Integer.class);
    Root<A> root = criteriaQuery.from(A.class);
    Path<Integer> bId = root.get("b_id");
    //building the criteria
    criteriaQuery.select(bId);

您需要加入 B,然后获取 id:

Path<Integer> bId = root.join("b").get("id");

你可以在classA​​中声明外键,其中"B_ID"是tableA中外键列的名称。然后你可以root.get( "bId") 在上面的 criteriabuilder 示例中。 我和你有同样的问题,这对我有用。

@Column(name="B_ID", insertable=false, updatable=false)
private int bId;
@ManyToOne(fetch = FetchType.EAGER)
@JoinColumn(name = "B_ID")
private B b;

如果您正在评估查询中存在于 A 实体中的 FK 主键,则不一定需要加入。

root.get("b")

此代码将通过主键检索外键。 例如你可以这样做:

root.get("b").in(List.of(1,2,3,4));

并且您有一个有效的谓词将 FK 值与此列表进行比较。