मैंने नीचे दिए गए कोड का उपयोग करके इस समस्या का समाधान किया है
final Document document = new Document();
document.put("test1", "test1");
document.put("test2", null);
document.put("test3", "test3");
mongoTemplate.getCollection("your-collection-name").insert(document);
यहाँ BSONObject का उपयोग करने के बजाय, मैंने दस्तावेज़ ऑब्जेक्ट का उपयोग किया और इसने ठीक काम किया।
दस्तावेज़ DB में डाला गया
{
"_id" : ObjectId("some-id"),
"test1" : "test1",
"test2" : null,
"test3" : "test3"
}