我们可以通过在存储库接口(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)); 

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

请您参考如下方法:

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

Spring Data JPA and Querydsl to fetch subset of columns using bean/constructor projection


评论关闭
IT源码网

微信公众号号:IT虾米 (左侧二维码扫一扫)欢迎添加!