My task is to create repository extending MongoDBRepository that allows me to define kind of findAndUpdate method. MongoOps and template approach is not allowed. This is how my MongoDocument looks like:
{"_id":"somedocumentId","attributetype1":{"class":"type1","value":"somevalue"},
"attributetype2":{"class":"type2","value":"somevalue"},
"attributetype3":{{"class":"type2","value":"somevalue"},{"class":"type2","value":"somevalue"},...,}
As you can see some atributes are just class values, while others are lists. Here is the update request I receive from my messaging subsystem:
{"documentId":"somedocumentIdValue","updatedata":{"class":"typeX","value":"somevalue"}
If type of request data is just a class value (like attributetype1 and 2) I need to update it, if update data is of type that is save as a list I need to append it.
What would you suggest in this case?