Return to site

GITHUB: reactive mongo/springboot app

· github,java

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.

Three methods in the service:
―'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.
Have a good one!