Tôi đã giải quyết vấn đề này bằng cách sử dụng mã dưới đây
final Document document = new Document();
document.put("test1", "test1");
document.put("test2", null);
document.put("test3", "test3");
mongoTemplate.getCollection("your-collection-name").insert(document);
Ở đây thay vì sử dụng BSONObject, tôi đã sử dụng đối tượng Document và nó hoạt động tốt.
Tài liệu được chèn vào DB
{
"_id" : ObjectId("some-id"),
"test1" : "test1",
"test2" : null,
"test3" : "test3"
}