是否可以在Spring Repository @Query注释中使用Array对象作为参数?

时间:2014-04-08 11:14:36

标签: spring postgresql spring-data-jpa

是否可以在Spring Repository @Query注释中使用Array对象作为参数?

我试图检索表中列节点存在于String数组中的所有行。是否可以使用Spring存储库中的@Query注释一次完成?

这是我的位置实体:

@Entity
@Table(name = "LOCATIONS")
public class Location extends Measurement{

    private String latitude;
    private String nsIndicator;

    private String longitude;
    private String ewIndicator;

    @ManyToOne
    @JoinColumn(name="node")
    private Node node;
}

其中节点引用Node类,并将其作为BIGINT映射到数据库中。

我有一个像这样的存储库:

public interface LocationRepository extends CrudRepository<Location, Long>{

    @Query(value=
            "SELECT l1.node, l1.id, l1.latitude, l1.longitude " +
            "FROM LOCATIONS l1 WHERE l1.node IN (:ids)", 
            nativeQuery=true)
    List<Location> findMeasureByIds(@Param("ids") String[] ids);
}

在那里,您可以看到我尝试执行的查询,但它无效。我不知道是否可以在那里使用数组,或者参数必须只是字符串和/或整数,我无法在任何地方找到它。

我尝试了几种组合,例如使用格式正确的String或长数组......但到目前为止还没有任何工作。

提前致谢。

SOLUTION:

@Query(value="SELECT * FROM LOCATIONS l1 " + 
             "INNER JOIN (SELECT node, MAX(id) AS id FROM LOCATIONS GROUP BY node) l2 " + 
             "ON l1.node = l2.node AND l1.id = l2.id " + 
             "WHERE l1.node IN :ids", nativeQuery=true) 
List<Location> findLastLocationByIds(@Param("ids") Set<Long> ids);

我已经为查询添加了更多功能,因为我需要检索为每个节点标识符插入的最后一行。因此,MAX函数和INNER JOIN可以完成这项工作。

1 个答案:

答案 0 :(得分:10)

使用集合而不是数组(Set<String>),并确保它不为空(否则查询将无效。

此外,没有理由使用原生查询,你不应该在参数周围加上括号:

@Query("SELECT l1 FROM Location l1 WHERE l1.node.id IN :ids")
List<Location> findLocationsByNodeIds(@Param("ids") Set<String> ids);