·
I am on a SpringBoot project which uses reactive mongo database features, and I wanted to do a mini-POC on my own to realize how simple can it be.
So here it is: https://github.com/vinny59200/VVREACTIVESPRINGBOOTMONGO
Three methods in the service:
―'findById'
―'findAll'
―'save'
―'findById'
―'findAll'
―'save'
You launch the app and mongodb.
You query the 'save' via postman, it records in mongo.
You find the record by its '_id' from the previous response, with the 'findById'.
You update it with the same 'save' method.
You query the 'save' via postman, it records in mongo.
You find the record by its '_id' from the previous response, with the 'findById'.
You update it with the same 'save' method.
Have a good one!