我正在使用 org.springframework.batch.item.data.MongoItemReader 并在使用
时mongoItemReader.setQuery({'update_date' : {$gte : ISODate('2014-01-01T12:00:00.000Z')}});
我越来越喜欢 com.mongodb.util.JSONParseException :
所以我将查询更改为:
{'update_date' : {$gte : '2014-01-01T00:00:00.000Z'}}
现在我没有收到此异常,但得到readcount = 0这是不正确的,因为 {'update_date':{$ gte:ISODate('2014-01-01T12:00:00.000Z')}是给我readcount = 20 。
如何处理?