Tento problém jsem vyřešil pomocí níže uvedeného kódu
final Document document = new Document();
document.put("test1", "test1");
document.put("test2", null);
document.put("test3", "test3");
mongoTemplate.getCollection("your-collection-name").insert(document);
Zde místo použití BSONObject jsem použil objekt Document a fungovalo to dobře.
Dokument vložen do DB
{
"_id" : ObjectId("some-id"),
"test1" : "test1",
"test2" : null,
"test3" : "test3"
}