Quarkus-MongoDB: Importing CSV files using Liquibase
MongoDb migration using Liquibase in Quarkus reactive application Quarkus is a kubernates native, java stack tailored for OpenJDK HotSpot and GraalVM, crafted from the best of breed java libraries and standards. Quarkus is gaining popularity gradually and already it's production ready. In this blog, we will see, how to add java based MongoDb migration using liquibase. We will build an application step by step. Our steps will be as follows: Generate a complete initial Quarkus application Add MongoDB dependencies to the application Add a docker image for running MongoDB in our local system. Add a simple rest endpoint so that we can check the migrated data Add Liquibase dependencies and configure liquibase Add java based migrations to Liquibase Test the app with our rest endpoint. Prerequisites For running the project, you need to have maven and docker installed in your system. Also you need to h...