从mongo db文档中的数据字段获取月份

时间:2020-06-09 12:21:48

标签: mongodb spring-boot

MongoCollection<Document> Person_List = db.getCollection("Person");
MongoCollection<Document> active_list = db.getCollection("activelist"); 
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-DD"); 
String todaydate = format.format(new Date()); 
ArrayList<Document> 
activeList=Person_List.find(Filters.regex("LastUpdate",todayDate.toString())).into(new 
ArrayList<Document>());

这是我们编写的代码,在这里我们需要从Todaydate获取月份,并且需要与LastUpdate字段的月份进行比较,如何从mongo db中的LastUpdate文档字段获取月份,LastUpdate是日期字符串,有人可以帮我吗?

0 个答案:

没有答案