Spring MVC Setup with Kotlin 1. Overview In this quick tutorial, we’ll take a look at what it takes to create a simple Spring MVC project with the Kotlin language. 2. Maven For the Maven configuration, we need to add the following Kotlin dependencies: <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-jre8</artifactId> <version>1.1.4</version> </dependency> We… Continue Reading spring-mvc-kotlin