spring-data-mongo - 可选查询参数?

我正在将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是最佳选择?

谢谢


答案 1

为了在布尔逻辑中实现这一点,我执行以下操作,并转换为编程语言中可用的操作。

: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);

答案 2

除了阿基米德的回答:
如果您需要匹配文档的计数,请替换为 .$where$expr

@Query("{ $or : [ { $expr: { $eq: ['?0', 'null'] } } , { field : ?0 } ] }")
Page<Something> findAll(String query, Pageable pageable);