有没有办法,从Spring JPA中获取特定列,在Spring启动应用程序中使用@Query注释

时间:2018-05-12 08:29:00

标签: java spring-boot spring-data-jpa

我正在使用JPARespository来执行数据库操作。我有一个要求,我想在传递一些where子句时从给定的表中选择特定的列。

1 个答案:

答案 0 :(得分:0)

您可以使用projections。 Spring Data将仅选择所需的列。它适用于方法名称和@Query注释生成的查询。

相关问题:Spring Data JPA Projection selected fields from the DB