gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-29 11:23:38 24 4
gpt4 key购买 nike

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

我正在尝试检索其列节点存在于字符串数组中的表中的所有行。是否可以使用 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 引用 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);
}

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

我已经尝试了几种组合,例如使用具有正确格式的简单字符串或长数组......但到目前为止没有任何效果。

提前致谢。

解决方案:

@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 来完成这项工作。

最佳答案

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

此外,没有理由为此使用 native 查询,并且您不应该在参数周围加上括号:

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

关于spring - 是否可以在 Spring Repository @Query 注释中使用 Array 对象作为参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22935278/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com