我使用spring-data mongo和基于JSON的查询方法,并且不确定如何在搜索查询中允许可选参数。
例如 - 说我有以下功能
@Query("{ 'name' : {$regex : ?0, $options : 'i'}, 'createdDate' : {$gte : ?1, $lt : ?2 }} }")
List<MyItem> getItemsLikeNameByDateRange(String name, Date startDateRange, Date endDateRange);
- 但我不想应用名称正则表达式匹配,或者如果将NULL值传递给方法,则不应用日期范围限制。
目前看来我可能需要使用mongoTemplate构建查询。
有没有其他选择 - 或者使用mongoTemplate是最佳选择?
由于
答案 0 :(得分:18)
要在布尔逻辑中实现此功能,我将执行以下操作并转换为编程语言中可用的操作
:query != null -> field == :query
!(:query != null) || (field == :query)
(:query == null) || (field == :query)
在纯SQL中,这是以
完成的where (null = :query) or (field = :query)
在MongoDB中,这是通过$ where
完成的{ $where: '?0 == null || this.field == ?0' }
我们可以通过使用Mongo Operations来加速一点,而不是以牺牲一些可读性为代价来构建函数。不幸的是不行。
{ $or : [ { $where: '?0 == null' } , { field : ?0 } ] }
所以你拥有的是
@Query("{ $or : [ { $where: '?0 == null' } , { field : ?0 } ] }")
List<Something> findAll(String query, Pageable pageable);
这可以进一步扩展以处理in / all子句
的数组@Query("{ $or : [ { $where: '?0.length == 0' } , { field : { $in : ?0 } } ] }")
List<Something> findAll(String query, Pageable pageable);
答案 1 :(得分:1)
您可能有兴趣就此问题提供反馈或投票: https://jira.springsource.org/browse/DATAJPA-209
它解决了这个问题。除了SD JPA。似乎它适用于许多其他SD子项目。
答案 2 :(得分:0)
除了阿基米德的回答:
如果您需要匹配文档的数量,请将 $where
替换为 $expr
。
@Query("{ $or : [ { $expr: { $eq: ['?0', 'null'] } } , { field : ?0 } ] }")
Page<Something> findAll(String query, Pageable pageable);