春季启动自定义查询MongoDB

时间:2019-02-13 10:57:05

标签: spring mongodb spring-boot mongorepository

我有这个MongoDb查询:

db.getCollection('user').find({
    $and : [
        {"status" : "ACTIVE"},
        {"last_modified" : { $lt: new Date(), $gte: new Date(new Date().setDate(new Date().getDate()-1))}},
        {"$expr": { "$ne": ["$last_modified", "$time_created"] }}
    ]
})

它可以在Robo3T中使用,但是当我将它作为自定义查询放在spring boot中时,它将在项目启动时引发错误。

@Query("{ $and : [ {'status' : 'ACTIVE'}, {'last_modified' : { $lt: new Date(), $gte: new Date(new Date().setDate(new Date().getDate()-1))}}, {'$expr': { '$ne': ['$last_modified', '$time_created']}}]}")
    public List<User> findModifiedUsers();

我尝试在春季用Criteria进行查询:

Query query = new Query();
Criteria criteria = new Criteria();  
criteria.andOperator(Criteria.where("status").is(UserStatus.ACTIVE), Criteria.where("last_modified").lt(new Date()).gt(lastDay), Criteria.where("time_created").ne("last_modified"));

但是它不起作用,它使我回到所有用户,就像没有不等于last_modifiedtime_created的最后一个条件一样。

有人知道可能是什么问题吗?

1 个答案:

答案 0 :(得分:1)

我认为Criteria尚不支持此功能-选中此https://jira.spring.io/browse/DATAMONGO-1845。 一种解决方法是像这样通过mongoTemplate传递原始查询:

BasicDBList expr = new BasicDBList();
expr.addAll(Arrays.asList("$last_modified","$time_created")); 

BasicDBList and = new BasicDBList();
and.add(new BasicDBObject("status","ACTIVE"));
and.add(new BasicDBObject("last_modified",new BasicDBObject("$lt",new Date()).append("$gte",lastDate)));
and.add(new BasicDBObject("$expr",new BasicDBObject("$ne",expr)));

Document document = new Document("$and",and); 
FindIterable<Document> result = mongoTemplate.getCollection("Users").find(document);