Small MongoDB application with basic CRUD operations for something like notes
The SwaggerUI for detailled API description can be found here:
{base-url}/swagger-ui.html
To connect to a MongoDB database, the following variable has to be set:
spring.data.mongodb.uri
For example like this:
spring.data.mongodb.uri=mongodb://user:password@domain:port/database
For connection to a (notes-) collection, the following variable has to be set:
collection.name
For example like this:
collection.name=notes
Further on, the following passwords can ge granted when launching the application:
admin.password={...}
user.password={...}
phil.password={...}