Spring CrudRepository findByInventoryIds(List<Long>inventoryIdList) - 相当于 IN 子句 [英] Spring CrudRepository findByInventoryIds(List&lt;Long&gt; inventoryIdList) - equivalent to IN clause

查看:32
本文介绍了Spring CrudRepository findByInventoryIds(List<Long>inventoryIdList) - 相当于 IN 子句的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在 Spring CrudRepository 中,我们是否支持字段的IN 子句"?即类似于以下内容?

In Spring CrudRepository, do we have support for "IN clause" for a field? ie something similar to the following?

 findByInventoryIds(List<Long> inventoryIdList) 

如果没有这样的支持,可以考虑哪些优雅的选择?为每个 id 触发查询可能不是最佳选择.

If such support is not available, what elegant options can be considered? Firing queries for each id may not be optimal.

推荐答案

findByInventoryIdIn(ListinventoryIdList) 应该可以解决问题.

HTTP 请求参数格式如下:

The HTTP request parameter format would be like so:

Yes ?id=1,2,3
No  ?id=1&id=2&id=3

JPA 存储库关键字的完整列表可以在 当前文档列表.它表明 IsIn 是等效的——如果你更喜欢这个动词的可读性——并且 JPA 还支持 NotInIsNotIn.

The complete list of JPA repository keywords can be found in the current documentation listing. It shows that IsIn is equivalent – if you prefer the verb for readability – and that JPA also supports NotIn and IsNotIn.

这篇关于Spring CrudRepository findByInventoryIds(List<Long>inventoryIdList) - 相当于 IN 子句的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆