带有选择的 CriteriaBuilder 不允许没有构造函数

CriteriaBuilder with Selection doesn't allow without constructor

我有一个动态选择列表,我想执行它以从 table 中获取特定列。但是当尝试执行代码时,出现以下错误。

org.springframework.dao.InvalidDataAccessApiUsageException: org.hibernate.hql.internal.ast.QuerySyntaxException: Unable to locate appropriate constructor on class
//Select fields
List<Selection<?>> selectionList = new ArrayList<>();
for(Integer fieldId: fieldIds){
     selectionList.add(recordsVORoot.get("dataAttr"+fieldId));
}
//Final Query
criteriaQuery.multiselect(selectionList).where(predicates.toArray(new Predicate[]{}))

您的实体 class 必须具有与您的投影字段完全匹配的构造函数。构造函数参数的顺序和类型必须匹配 sql 结果。