Quick Guide on Loading Initial Data with Spring Boot 1. Overview Spring Boot makes it really easy to manage our database changes in an easy way. If we leave the default configuration, it’ll search for entities in our packages and create the respective tables automatically. But sometimes we’ll need some… Continue Reading spring-boot-data-sql-and-schema-sql

Java Localization – Formatting Messages 1. Introduction In this tutorial, we’ll consider how we can localize and format messages based on Locale. We’ll use both Java’s MessageFormat and the third-party library, ICU. 2. Localization Use Case When our application acquires a wide audience of users from all over the world, we… Continue Reading java-localization-messages-formatting

Guide to Kotlin @JvmField 1. Overview In this tutorial, we’re going to explore the @JvmField annotation out of Kotlin. Kotlin has its approach to classes and properties, which differs from the approach used in Java. The @JvmField annotation makes it possible to achieve compatibility between the two languages. 2. Field… Continue Reading kotlin-jvm-field-annotation