Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/spring/12.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
MapR与Java错误_Java_Spring_Spring Boot_Mapr_Bigdata - Fatal编程技术网

MapR与Java错误

MapR与Java错误,java,spring,spring-boot,mapr,bigdata,Java,Spring,Spring Boot,Mapr,Bigdata,我正在使用java、spring boot和Mapr5.2 QueryCondition cond = MapRDB .newCondition() .in("propertyName", searchedStrings) .build(); List<Document> docs = jsonStore.query(cond); QueryCondition cond=MapRDB .newCondition() .in(

我正在使用java、spring boot和Mapr5.2

QueryCondition cond = MapRDB
        .newCondition()
        .in("propertyName", searchedStrings)
        .build();

    List<Document> docs = jsonStore.query(cond);
QueryCondition cond=MapRDB
.newCondition()
.in(“propertyName”,SearchedString)
.build();
List docs=jsonStore.query(cond);
该查询在返回我期望的连接结果时运行良好(如果数据库中有2条记录的propertyName=1和propertyName=2,并且搜索字符串中有1和2,则返回这两条记录)

但是,如果我们按id搜索:

QueryCondition cond = MapRDB
            .newCondition()
            .in("_id", searchedStrings)
            .build();

        List<Document> docs = jsonStore.query(cond);
QueryCondition cond=MapRDB
.newCondition()
.in(“\u id”,搜索字符串)
.build();
List docs=jsonStore.query(cond);
-查询始终仅返回1个文档(即使我们有更多匹配项) 你有关于这种行为的任何信息吗?是虫子还是。。。
提前谢谢。

没人知道?或者有类似bug的链接或者其他没人知道的东西?或者任何有类似bug的链接或其他东西