I need to insert the Mongo Date while inserting record to the collection in JAVA. I have used the document object for inserting data. Also used mongo-java-driver library for mongo connectivity. Is there any existing function to insert the mongo date (UTC date)?
Please check with the below code set
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);