我们可以通过在存储库接口中编写自定义@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));
这是正确的方法吗?错在哪里?
我试过这个,但它一直返回整个对象。
此方法返回与给定规范匹配的单个实体。请检查这里
根据我的理解,这是正确的方法。U可以正常访问实体的属性(例如MyInfo.getId属性())
如果这是错误的,请纠正我。
通常Specification
位于XxxSpecification类中,并具有静态方法。它们通常以以下两种方式使用:
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,DB查询返回整列。
原因是存储库findAll
采用规范
。Specification
作为限制
返回,因此,它查询
中的所有列。它有一个<code>select</code>来指定列,它位于<code>选择</code>中,而不是<code>限制</code>中。在类<code>QueryStructure</code>中查看更多信息。
方法二,DB查询只返回选择
列。
它看起来像返回一个Entity
,这是因为它是一个链接的泛型类型调用,并且该泛型类型是Entity
。
当前的Spring data jpa规范执行器仅限于在其中子句中的条件,因此您不能更改选定的列,它隐含地仅限于完整的实体(请查看Jpa专业代码执行器
接口留档)。您必须使用自定义存储库实现,或者移动到命名查询-
Spring Data JPA和Querydsl使用bean/构造函数投影获取列子集
问题内容: 我正在使用Spring JPA执行所有数据库操作。但是我不知道如何从Spring JPA的表中选择特定的列? 例如: 问题答案: 你可以从这样的类中在注释中进行设置: 请注意,你将不得不自己进行映射。像这样使用常规映射查找可能会更容易,除非你确实只需要这两个值: 也许也值得看一下Spring数据文档。
我正在使用Spring JPA执行所有数据库操作。但是,我不知道如何在Spring JPA中从表中选择特定的列? 例如:
我想从我的表中获取一些特定的列,但我得到了这个错误:无法执行查询;SQL[按名称顺序从字符中选择名称、图像asc];嵌套的异常是org。冬眠例外SQLGrammarException:无法执行查询。 o、 引擎。jdbc。spi。SqlExceptionHelper:SQL错误:0,SQLState:42703 o.h.engine。jdbc。spi。SqlExceptionHelper:在此结果
假设我们有一个包含许多列的数据框,。我只想创建一个包含以下列的DF
我正在使用Spring数据jpa来创建服务。使用我从多个表中提取记录。我在模型类中使用了映射。模型类与和进行映射。相符。 我只想从建筑中选择建筑名称。 谁能告诉我怎么办? 查询DSL 结果
问题内容: 我有这样的桌子 我需要选择何时类型为0,何时类型为1,何时类型为N … 我怎样才能做到这一点? 问题答案: