Build Reactive CRUD APIs With Quarkus, MongoDB, and Panache
Hello everyone. Today we will learn how to develop Reactive CRUD APIs with MongoDB, Quarkus, and MongoDB Panache . You can download the source code from our Github repository. After completing this tutorial what we will build? We will build Reactive REST API CRUD features: GET - Fetch all User : /api/v1/users GET - Get User by ID : /api/v1/users/{id} POST - Create User : /api/v1/users PUT - Edit User Details : /api/v1/users/ DELETE - Delete User : /api/v1/users/{id} Technologies used: Quarkus 2.2.3.Final RESTEasy Reactive 2.2.3.Final Mongodb Mongodb Panache 2.2.3.Final Maven Java 11 More Quarkus Related topics, Build Rest CRUD API with Quarkus and MongoDB client QUARKUS + Hibernate CRUD example - Creating a CRUD REST API/Service Build REST CRUD APIs with Quarkus and MyBatis Kotlin + Quarkus + Hibernate - Build REST CRUD API example Create Quarkus Project With code.quarkus.io: Hello world example Quarkus - How to send email via SMTP - Quickstart Quarkus - Qute - Hello World Examp