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
- Host: GitHub
- URL: https://github.com/salithaucsc/springboot-rest-api
- Owner: SalithaUCSC
- Created: 2018-10-22T01:09:11.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-03T18:05:40.000Z (over 7 years ago)
- Last Synced: 2025-10-25T17:34:17.148Z (9 months ago)
- Topics: mongodb, rest-api, spring-boot
- Language: Java
- Homepage: https://javaspring-api.herokuapp.com
- Size: 22.5 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```