我们可以通过在Repository Interface中编写自定义@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));
这是正确的方法吗?错误在哪里?
答案 0 :(得分:1)
当前的spring数据jpa规范执行程序仅限于where子句中的条件,因此您可以更改所选列,它仅限于完整实体。您必须使用自定义存储库实现,或转移到命名查询 -
Spring Data JPA and Querydsl to fetch subset of columns using bean/constructor projection
答案 1 :(得分:0)
答案 2 :(得分:0)
规范是对where子句的抽象。由于JPA标准API的设计,您可以在Specification中进行各种处理,但是除了声明where子句之外,任何副作用的行为都是未定义的。
如果要控制选择列表,则可以使用带有推导的查询派生和非常有限的查询支持,也可以使用自定义方法构造完整的自定义查询。