Micronaut

CRUD operation with Hibernate and Micronaut

Reading Time: 4 minutes In this blog, we will delve further into Micronaut Framework by using it to create an app using Hibernate and H2 Database. This blog requires prior knowledge of Micronaut Framework and Hibernate. If you’re completely new to Micronaut and would like to learn more about it please go through the Fundamentals of Micronaut. Introduction Let’s first briefly know about the technologies that we will be Continue Reading

Developing programmer Development Website design and coding technologies working

Schema migration with Liquibase and Micronaut

Reading Time: 3 minutes In today’s world of microservices, each microservice has its own set of information stored in some kind of data store. This data store can be either a database or some other system that can retain the data for a period of time. We moved to microservices because we didn’t want one set of functionality not to be impacted by the changes in other functionality. After Continue Reading

Run your aggregation queries at a speed of 14x without spending $$$

GraphQL with Micronaut application

Reading Time: 4 minutes In this article, we will implement a Micronaut application written in Java that uses GraphQL to expose the data. Let’s have a quick overview of the GraphQL and Micronaut frameworks before we move on to the implementation. GraphQL “GraphQL is a query language for APIs and a runtime for fulfilling those queries with your existing data. GraphQL provides a complete and understandable description of the Continue Reading

Micronaut server generation using OpenApi specification

Reading Time: 3 minutes In this article, we will create an OpenAPI specification file and use it to generate a Java Micronaut server API using the OpenAPI generator. Installing OpenAPI generator We can use the OpenAPI generator using multiple supported workflow integrations like Gradle, Maven, and SBT. Here, we are using the jar option, Download the binary, then place it in the project folder you want to use. To Continue Reading

Young Asian software developer working over new program

Fundamentals of Micronaut and its features

Reading Time: 5 minutes In this blog, we will discuss Micronaut in context of what and why, and we will also see how to create an application from Micronaut launch. Before taking a deep dive into Micronaut, let us get familiar with some of the associated terminologies. Having this information will help us better understand it. Ahead of time compilation(AOT) – It is the pre-computation of application code using Continue Reading

Data centre

Micronaut Data JPA Hibernate

Reading Time: 2 minutes In this blog, we will cover accessing data using Micronaut JPA-Hibernate. What is Micronaut It is an open-source JVM-based software framework for building lightweight, modular applications and microservices. Micronaut has the ability to help developers create apps and microservices with small memory footprints and short startup times.  What are JPA and Hibernate JPA stands for Java Persistence API is a specification that is used to access, manage, Continue Reading