Skip to content
Advertisement

Mongodb Java SDK not using the @BsonProperty as the field name

I am using the mongodb-driver-sync library, version: 4.2.3 in my Java project to insert values into a MongoDB collection. When I insert them, the field names are not the values in the @BsonProperty annotation but the lower camel case of the Java variable names. How do I make it use my annonation value?

My POJO is:

JavaScript

My insertion code is:

JavaScript

The BSON entered is:

JavaScript

It should be:

JavaScript

My dependencies are:

JavaScript

Advertisement

Answer

Maybe it is a matter of convention. Your properties all start with capital letters. Since getter/setter convention advise that this kind of property should start with low case letters I would try something like this:

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement