Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/rutzno/customer-feedback-service
- Owner: Rutzno
- Created: 2024-05-13T01:38:07.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-05-13T14:37:14.000Z (8 months ago)
- Last Synced: 2024-12-19T02:09:14.370Z (17 days ago)
- Topics: docker, docker-container, logback, querybyexampleexecutor, spring-boot, spring-data-mongodb, spring-logging, spring-web-mvc
- Language: Java
- Homepage:
- Size: 62.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
- ...