Member-only story
CODEX
Quarkus — MongoDB Integration
On one side we have supersonic, subatomic Java framework, Quarkus and on the other side cross-platform document oriented NoSql database, MongoDB. So, it must be fun to integrate these two platforms with each other and executes our application in a supersonic way.

What is Quarkus?
Quarkus is being developed by Red Hat in Java and it is a full-stack, Kubernetes-native Java application framework.
The best two functionalities that I like about Quarkus are;
- It is a combination of imperative coding & reactive coding,pls read the following link how it combines both;
- It has really fast boot time comparing with other frameworks
I will not mention about how to setup your first Quarkus project because there are plenty of informative examples in its website. In order to react these examples about Quarkus, pls follow https://quarkus.io link.
Quarkus & MongoDB Connection
I have my MongoDB image in my local Docker and run my MongoDB container from this image. As MongoDB driver is not implicitly embedded in Quarkus, I am using Panache library for the MongoDB connection.
First, add our db connection to our application.properties file. My MongoDB runs on 27017 port & my database name is enterprise.