Entity To DTO Conversion for a Spring REST API 1. Overview In this tutorial, we’ll handle the conversions that need to happen between the internal entities of a Spring application and the external DTOs (Data Transfer Objects) that are published back to the client. Further reading: A Guide to Mapping… Continue Reading entity-to-and-from-dto-for-a-java-spring-application

String Comparison in Kotlin 1. Overview In this tutorial, we’ll discuss different ways of comparing Strings in Kotlin. 2. Comparison Operators Let’s start with the “==” operator. This operator can be used to check if the strings are structurally equal. It’s the equivalent of using the equals method in Java: val first… Continue Reading kotlin-string-comparison