Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 JPA 标准 API 中,Roots 可以互换吗?
Root
也就是说,如果我正在准备两个CriteriaQuery实例,并且如果我在其中一个上执行此操作:
CriteriaQuery
final Root<X> root = query.from(X.class);
...然后我可以Root在与第二个查询交互时使用该实例吗?
我想以WHERE这种方式以编程方式构建一个子句,然后在两个查询中使用它。
WHERE
Roots 是不可互换的,尽管 JPA 规范没有明确指出这一点。