@RestController – How to build a SpringBoot Kotlin RESTful Web Service
In the tutorial, Kotlination will show you the first step to build a SpringBoot Kotlin RESTful Web Service.
In the tutorial, Kotlination will show you the first step to build a SpringBoot Kotlin RESTful Web Service.
In the tutorial, Kotlination will help you the first step for starting with Kotlin language by building a example Kotlin HelloWorld using SpringBoot, Maven and SpringToolSuite.
With Kotlin, we can define a function that chooses the appropriate logic variants for specific cases and returns one of them as another function. In this tutorial, we’re gonna look at how to return Function from Function.
In this Kotlin tutorial, we’re gonna look at how to make an observable property by using Kotlin delegated property.
Lazy Initialization is a common pattern for delaying creation of an object, calculation of a value, or an expensive process until it’s accessed for the first time. It is helpful when the initialization process consumes significant resources and the data isn’t always required when the… Read More
In object oriented programming, there is a common situation when you want a class to have only one instance. In Java, we usually implement using the Singleton Design Pattern: define a class with a private constructor and a static field holding the only existing instance… Read More
This Kotlin tutorial shows you ways to get File Name from full path with Kotlin Regex and extension functions.
This Kotlin tutorial shows you ways to split string with Kotlin extension functions.
This Kotlin tutorial shows you example that uses Fold method on List, Map of Objects. Related Post: Kotlin List & Mutable List tutorial with examples
This Kotlin tutorial shows you example that uses Partition method to split List, Map of Objects. Related Post: Kotlin List & Mutable List tutorial with examples