Multi-Module Project With Spring Boot 1. Overview In this quick tutorial, we’ll show how to create a multi-module project with Spring Boot. First, we’ll build a library jar that isn’t an application itself, and then we’ll build an application that uses our library. For an introduction to Spring Boot, please refer to this… Continue Reading spring-boot-multiple-modules

Overview of Kotlin Collections API 1. Overview In this quick tutorial, we’ll introduce the Kotlin’s Collections API, and we’ll discuss the different collection types in Kotlin and some common operations on collections. 2. Collection vs. Mutable Collection First, let’s take a look at different types of collections in Kotlin. We… Continue Reading kotlin-collections-api

Introduction to Spring Cloud Netflix – Eureka 1. Overview In this tutorial, we’ll introduce client-side service discovery via “Spring Cloud Netflix Eureka“. Client-side service discovery allows services to find and communicate with each other without hard-coding hostname and port. The only ‘fixed point’ in such an architecture consists of a… Continue Reading spring-cloud-netflix-eureka