Mongodb QueryByExample 查找一个
Mongodb QueryByExample findOne
一些其他进程将文档插入 mongo 集合,下面是样本数据
{ "_id" : ObjectId("597b89c8da52380b04ee6948"), "_class" : "com.test.mongo", "clientId" : "CAQ123999", "isValid" : false, "isParent" : true }
{ "_id" : ObjectId("597b89c8da52380b04ee6949"), "_class" : "com.test.mongo", "clientId" : "CAQ123999", "isValid" : false, "isParent" : true }
{ "_id" : ObjectId("597b89c8da52380b04ee6950"), "_class" : "com.test.mongo", "clientId" : "CAQ123998", "isValid" : true, "isParent" : true }
{ "_id" : ObjectId("597b89c8da52380b04ee6951"), "_class" : "com.test.mongo", "clientId" : "CAQ123997", "isValid" : true, "isParent" : false }
我正在尝试使用 QueryByExampleExecutor 为 clientId 获取一条记录。
这是我的模型
package com.test.cfp.model;
public class TFSModel {
private String clientId;
private boolean isValid;
private boolean isParent;
...
}
下面是构建示例的代码:
TFSModel tfs = new TFSModel();
tfs.setClientId(CAQ123999);
tfs.setValid(false);
tfs.setParent(true);
ExampleMatcher matcher =ExampleMatcher.matching().withIgnoreNullValues().withIgnorePaths("_id","_class");
Example<TFSModel > example = Example.of(tfs,matcher);
TFSModel oneTfsRecord = tflsRepository.findOne(example);
这不起作用,下面是生成的查询
findOne using query: { "isValid" : false , "isParent" : true , "clientId" : "CAQ123999" , "_class" : { "$in" : [ "com.test.cfp.model.TFSModel"]}} in db.collection: returns.tfs;
显然 _class 与 mongo 集合中的包不同。我如何告诉 mongo 在没有 _class 的情况下构建查询。我尝试了 withIgnoredPaths 但它不起作用。
MongoExampleMapper
检查探测类型,根据MappingContext
中的已知类型写入类型限制。可分配给探测器的类型包含在 $in
运算符中。
class One {
@Id String id;
String value;
// ...
}
class Two extends One {
// ...
}
One probe = new One();
probe.value = "firefight";
Example<One> example = Example.of(probe, ExampleMatcher.matchingAny());
{
value: firefight,
_class: { $in : [ "com.example.One" , "com.example.Two" ] }
}
无法使用 .withIgnorePaths()
更改此行为,因为 _class
说明符不是域模型的一部分。如果您认为应该考虑这一点,请在 jira.spring.io 中提出问题。
查看 mongo 集合中提供的示例数据,您提供的 _class
属性与您的域类型不匹配,因此无法加载。
一些其他进程将文档插入 mongo 集合,下面是样本数据
{ "_id" : ObjectId("597b89c8da52380b04ee6948"), "_class" : "com.test.mongo", "clientId" : "CAQ123999", "isValid" : false, "isParent" : true }
{ "_id" : ObjectId("597b89c8da52380b04ee6949"), "_class" : "com.test.mongo", "clientId" : "CAQ123999", "isValid" : false, "isParent" : true }
{ "_id" : ObjectId("597b89c8da52380b04ee6950"), "_class" : "com.test.mongo", "clientId" : "CAQ123998", "isValid" : true, "isParent" : true }
{ "_id" : ObjectId("597b89c8da52380b04ee6951"), "_class" : "com.test.mongo", "clientId" : "CAQ123997", "isValid" : true, "isParent" : false }
我正在尝试使用 QueryByExampleExecutor 为 clientId 获取一条记录。
这是我的模型
package com.test.cfp.model;
public class TFSModel {
private String clientId;
private boolean isValid;
private boolean isParent;
...
}
下面是构建示例的代码:
TFSModel tfs = new TFSModel();
tfs.setClientId(CAQ123999);
tfs.setValid(false);
tfs.setParent(true);
ExampleMatcher matcher =ExampleMatcher.matching().withIgnoreNullValues().withIgnorePaths("_id","_class");
Example<TFSModel > example = Example.of(tfs,matcher);
TFSModel oneTfsRecord = tflsRepository.findOne(example);
这不起作用,下面是生成的查询
findOne using query: { "isValid" : false , "isParent" : true , "clientId" : "CAQ123999" , "_class" : { "$in" : [ "com.test.cfp.model.TFSModel"]}} in db.collection: returns.tfs;
显然 _class 与 mongo 集合中的包不同。我如何告诉 mongo 在没有 _class 的情况下构建查询。我尝试了 withIgnoredPaths 但它不起作用。
MongoExampleMapper
检查探测类型,根据MappingContext
中的已知类型写入类型限制。可分配给探测器的类型包含在 $in
运算符中。
class One {
@Id String id;
String value;
// ...
}
class Two extends One {
// ...
}
One probe = new One();
probe.value = "firefight";
Example<One> example = Example.of(probe, ExampleMatcher.matchingAny());
{
value: firefight,
_class: { $in : [ "com.example.One" , "com.example.Two" ] }
}
无法使用 .withIgnorePaths()
更改此行为,因为 _class
说明符不是域模型的一部分。如果您认为应该考虑这一点,请在 jira.spring.io 中提出问题。
查看 mongo 集合中提供的示例数据,您提供的 _class
属性与您的域类型不匹配,因此无法加载。