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

https://github.com/salithaucsc/springboot-rest-api

REST API created using Java SpringBoot Framework and MongoDB to handle basic CRUD operations related to users
https://github.com/salithaucsc/springboot-rest-api

mongodb rest-api spring-boot

Last synced: 3 months ago
JSON representation

REST API created using Java SpringBoot Framework and MongoDB to handle basic CRUD operations related to users

Awesome Lists containing this project

README

          

# SpringBoot-REST-API
### Simple Micro Service application implemented using SpringBoot and MongoDB
1. Download project and extract it.
2. Open project in IntelliJ IDEA or Eclipse.
3. Run the project.
4. You can get results folowing these routes.

```
GET ALL USERS : http://localhost:8080/api/users

GET SINGLE USER : http://localhost:8080/api/users/mongoObjectId

INSERT USER : http://localhost:8080/api/users/ @PutMapping

UPDATE USER : http://localhost:8080/api/users/ @PostMapping

DELETE USER : http://localhost:8080/api/delete/mongoObjectId
```