Search⌘ K
AI Features

Getting Started

Explore the essentials of creating reactive microservices with Kotlin and Vert.x. Learn how to initialize a Kotlin Gradle project, understand the use of Vert.x for reactive programming, and implement basic endpoints for managing a database of cats.

We'll cover the following...

In this chapter, we’ll be using the Vert.x framework and Kotlin. Vert.x is a Reactive framework that is built on top of Reactive principles.

The microservice we’ll develop in this chapter will provide an endpoint for health checks and will be able to delete and update the cats in our database.

Technical requirements

For this project, ...