我想在mongoDB中的数组中“文本搜索”。我想使用“文本搜索”作为文档字段(这是一个字符串数组)。我希望能够得到:
$indexOfArray
“文本”的位置。
我尝试使用public class Example {
public static void main(String[] args) {
Example ex = new Example();
ex.callService(Integer::getInteger, "123");
}
private Integer callService(Function<String, Integer> sampleMethod, String input) {
Integer output = sampleMethod.apply(input);
System.out.println("Calling method "+ sampleMethod);
return output;
}
}
,但即使我正在使用聚合框架,它也无处可去。
任何线索??