spring jpa exists

Posted white knight

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring jpa exists相关的知识,希望对你有一定的参考价值。

Subquery<A> subquery = criteriaQuery.subquery(A.class);
Root<A> root1 = subquery.from(A.class);

subquery = subquery.select(root1.get("attrx"));
subquery = subquery.where(criteriaBuilder.and(
criteriaBuilder.equal(root1.get("attr1"), root.get("attr11")),
criteriaBuilder.equal(root1.get("attr2"), "value")
));

criteriaBuilder.exists(subquery)

以上是关于spring jpa exists的主要内容,如果未能解决你的问题,请参考以下文章

detectron2报AttributeError: Attribute ‘evaluator_type‘ does not exist in the metadata of dataset(代码片段

Error executing DDL "drop sequence if exists hibernate_sequence" via JDBC Statement

Spring,JPA与Hibernate的最新整合范例视频

Spring学习总结 05 JPA

试图在我的代码中找到数据库连接泄漏,使用 Spring / JPA / Hikari

如何在 Spring Boot JPA 中加入两个表,我的代码出错了