弹簧数据 JPA 规范,用于选择特定列

2022-09-03 15:38:19

我们可以通过在存储库接口中编写自定义@Query方法来选择特定的列。但是,我不想为不同的属性编写这么多方法。

我试过了,但它一直返回整个对象。

public class MySpecifications {

    public static Specification<MyInfo> propertiesWithId(final String[] properties, final Object id, final String idProperty)
    {

        return new Specification<MyInfo>() {

            @Override
            public Predicate toPredicate(Root<MyInfo> root,
                    CriteriaQuery<?> query, CriteriaBuilder cb) {

                query = cb.createTupleQuery(); //tried cb.createQuery(MyInfo.class); as well

                List<Selection<? extends Object>> selectionList = new ArrayList<Selection<? extends Object>>();

                for (String property : properties) {

                    Selection<? extends Object> selection = root.get(property);

                    selectionList.add(selection);
                }

                return query.multiselect(selectionList).where(cb.equal(root.get(idProperty), id)).getRestriction();
            }

        };
    }
}

用作:

MyInfo findOne(Specification(properties,idValue, idProperty));

这是正确的方法吗?错误在哪里?


答案 1

当前的 spring data jpa 规范执行器仅限于 where 子句中的条件,因此您无法更改所选列,它隐式地限制为仅包含完整实体(请查看接口文档)。您必须使用自定义存储库实现,或者转到命名查询 -JpaSpecificationExecutor

Spring Data JPA 和 Querydsl,用于使用 bean/构造函数投影获取列的子集


答案 2

如果这是错误的,请纠正我。

通常位于 XxxSpecifications 类中,并具有静态方法。它们通常以下列2种方式使用:Speicification

public class SwVecSpecifications {

    // Method 1. 
    public static Specification<WhiteVecEntity> conditions(String groupId, String appId, String typeId) {
        return (Specification<WhiteVecEntity>) (root, query, cb) -> {
            Predicate p3 = cb.equal(root.get("groupId"), groupId);
            Predicate p2 = cb.equal(root.get("appId"), appId);
            Predicate condition = cb.and(p2,p3);
            if (typeId != null && !typeId.isEmpty()) {
                Predicate p1 = cb.equal(root.get("typeId"), typeId);
                condition = cb.and(condition, p1);
            }
            return query.select(root.get("id")).where(condition).getRestriction();
        };
    }

    // Method 2.
    static void findByConditions(EntityManager em) {
        String groupId = "";
        String typeId = "";

        CriteriaBuilder cb = em.getCriteriaBuilder();
        CriteriaQuery<SuspectVecEntity> query = cb.createQuery(SuspectVecEntity.class);
        Root<SuspectVecEntity> root = query.from(SuspectVecEntity.class);

        Predicate p1 = cb.equal(root.get("groupId"), groupId);
        Predicate p2 = cb.equal(root.get("appId"), appId);
        Predicate condition = cb.and(p2,p3);
        if (typeId != null && !typeId.isEmpty()) {
            Predicate p1 = cb.equal(root.get("typeId"), typeId);
            condition = cb.and(condition, p1);
        }
        CriteriaQuery<SuspectVecEntity> cq = query.select(root.get("id")).where(condition);
        List<SuspectVecEntity> resultList = em.createQuery(cq).getResultList(); // resultList has Entity that only contains id
    }
}

方法 1 的存储库:

public interface SuspectVecRepository extends JpaRepository<SuspectVecEntity, Long>, JpaSpecificationExecutor<SuspectVecEntity>  {
     List<SuspectVecEntity> findAll(Specification specs);
}

服务:

@Autowired
EntityManager em;
void foo() {
     // Method 1:
     List<SuspectVecEntity> r1 = findAll(SwVecSpecifications.conditions());
     // Method 2:
     List<SuspectVecEntity> r2 = SwVecSpecifications.findByConditions(em); 
}

这两种方法之间的区别是:

方法 1,数据库查询返回整列。

原因是存储库需要 .这将返回为 ,因此,它将查询 中的所有列。它有一个用于指定列的列,该列不在 中。在课堂上查看更多内容。findAllSpecificationSpecificationrestrictionEntityselectselectionrestrictionQueryStructure

方法 2,数据库查询仅返回列。select

它看起来像返回一个,这是因为它是一个链接的泛型类型调用,并且该泛型类型是 。EntityEntity


推荐