-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

Hands-On Microservices with Kotlin
By :

In order to have a microservice ready to be deployed, first we need to build it, and for that, we will use some of the knowledge that we have gained during the course of the chapters in this book. We will use Spring Boot to create a microservice that will have some tests using SpringBootTest and MockMVC, then, we will upload our microservice to GitHub so that it is available for the next sections on this chapter.
Now that we have our tools ready, we should create our microservice, and we will use Spring Initializr as we have done in previous chapters.
We can start by visiting the URL: https://start.spring.io/:
Spring Initializr
We have chosen to create a Maven Project
using Kotin
and Spring Boot 2.0.0 M7
. We choose the Group
to be com.microservices
and the Artifact
to be chapter11
. For D
ependencies
, we have set Web
. Now, we can click on Generate Project
to download it as a ZIP file, and after we unzip it, we can open it with IntelliJ IDEA...