Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rutzno/customer-feedback-service

Customer Feedback Service using Spring Boot and MongoDB
https://github.com/rutzno/customer-feedback-service

docker docker-container logback querybyexampleexecutor spring-boot spring-data-mongodb spring-logging spring-web-mvc

Last synced: 17 days ago
JSON representation

Customer Feedback Service using Spring Boot and MongoDB

Awesome Lists containing this project

README

        

# Customer-Feedback-Service
- In this project, we use Spring Boot with MongoDB database
- We also use docker to containerize a MongoDB database
- We have different services REST (endpoint) :
- @PostMapping("/feedback") : to save, store a feedback ;
- @GetMapping("/feedback/{id}") : to get a feedback by id ;
- @GetMapping("/feedback") : to retrieve feedbacks by data filtering, sorting and paging through MongoRepository interface
- ...