Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iammahesh123/spring-reactive-crud-application
This is a simple CRUD (Create, Read, Update, Delete) application built using Spring WebFlux and MongoDB. It provides endpoints to perform CRUD operations on users.
https://github.com/iammahesh123/spring-reactive-crud-application
crud-application java spring spring-reactive spring-reactive-mongodb spring-web
Last synced: 3 days ago
JSON representation
This is a simple CRUD (Create, Read, Update, Delete) application built using Spring WebFlux and MongoDB. It provides endpoints to perform CRUD operations on users.
- Host: GitHub
- URL: https://github.com/iammahesh123/spring-reactive-crud-application
- Owner: iammahesh123
- Created: 2024-03-07T08:21:07.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-03-08T22:38:05.000Z (10 months ago)
- Last Synced: 2024-03-08T23:37:24.670Z (10 months ago)
- Topics: crud-application, java, spring, spring-reactive, spring-reactive-mongodb, spring-web
- 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
# Spring Reactive CRUD App
This is a simple CRUD (Create, Read, Update, Delete) application built using Spring WebFlux and MongoDB. It provides endpoints to perform CRUD operations on users.
## Features
- Get all users
- Get user by ID
- Create user
- Update user
- Delete user## Technologies Used
- Java
- Spring WebFlux
- MongoDB
- Lombok## Prerequisites
- Java 8 or higher
- MongoDB installed and running## Getting Started
1. Clone the repository:
```bash
git clone https://github.com/iammahesh123/spring-reactive-crud-application.git
```2. Import the project into your preferred IDE.
3. Make sure MongoDB is running on your local machine.
4. Run the application.
5. You can access the API endpoints to perform CRUD operations on users.
## API Endpoints
- **GET /users:** Get all users
- **GET /users/{id}:** Get user by ID
- **POST /users:** Create user
- **PUT /users/{id}:** Update user
- **DELETE /users/{id}:** Delete user
## How to Contribute
1. Fork the repository
2. Create your feature branch (git checkout -b feature/YourFeature)
3. Commit your changes (git commit -am 'Add some feature')
4. Push to the branch (git push origin feature/YourFeature)
5. Create a new Pull Request
## License
This project is licensed under the [MIT License](LICENSE) - see the LICENSE file for details.