Guide to Reactive Microservices Using Lagom Framework Programming Reactive 1. Overview In this article, we’ll explore the Lagom framework and implement an example application using a reactive microservices driven architecture. Simply put, reactive software applications rely on message-driven asynchronous communication and are highly Responsive, Resilient and Elastic in nature. By… Continue Reading lagom-reactive-microservices

Guide to JMapper 1. Overview In this tutorial, we’ll explore JMapper – a fast and easy to use mapping framework. We’ll discuss different ways to configure JMapper, how to perform custom conversions, as well as relational mapping. 2. Maven Configuration First, we need to add the JMapper dependency to our pom.xml: <dependency>… Continue Reading jmapper

Guide to Spring Cloud Kubernetes 1. Overview When we build a microservices solution, both Spring Cloud and Kubernetes are optimal solutions, as they provide components for resolving the most common challenges. However, if we decide to choose Kubernetes as the main container manager and deployment platform for our solution, we… Continue Reading spring-cloud-kubernetes

Spring Boot Console Application 1. Overview In this quick tutorial, we’ll explore how to create a simple console-based application using Spring Boot. 2. Maven Dependencies Our project relies on the spring-boot parent: <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.0.3.RELEASE</version> </parent> The initial dependency required is: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> </dependency> 3. Console Application Our… Continue Reading spring-boot-console-app