我已经采用spring-data-mongo
了一段时间,但是当我需要fetch
定期数据时,我遇到了一个障碍,比如每次20 seconds
。我使用 ISODate 对象,所以它的形式是ISODate("2013-08-09T05:51:16.140Z")
。
下面是一个示例文档
{
"_id": "fffd8e68-e81a-4835-ac5c-ef532291584b",
"_class": "net.publichealth.edowmis.datalayer.models.Post",
"userID": "09258b84-6d09-4977-a0f1-4e59b963221f",
"dateCreated": ISODate("2013-08-09T06:29:07.413Z"),
"lastModified": ISODate("2013-08-09T06:29:07.413Z"),
}
我想查询数据库以查找当时的所有条目:2013-08-09 06:29:07
但以下查询均无效。我已经在mongo shell
(ubuntu 终端)rockmongo
和intellij mongo
插件中尝试过这些查询
// rock mongo on post collection
{
"dateCreated" : new ISODate("2013-08-09T06:29:07")
}
{
"dateCreated" : new ISODate("2013-08-09 06:29:07")
}
{
"dateCreated" : new ISODate("2013-08-09")
}
// terminal and intelliJ
db.post.find({"dateCreated":new ISODate("2013-08-09T06:29:07")}) // did all the combination above.
没有结果 :(
我找不到钓点。请帮我看看
谢谢