我需要在JAVA中将记录插入集合时插入Mongo Date。我使用了文档对象来插入数据。还使用mongo-java-driver库进行mongo连接。是否存在插入mongo日期(UTC日期)的现有功能?
请查看以下代码集
MongoDatabase database = mongoClient.getDatabase(dbName);
MongoCollection<Document> collection = database.getCollection(collectionName);
Document document = new Document("key1", value1).append("key2", value2).append("key3", value3).append("date", new MongoDate());
collection.insertOne(document);