Communication between Spring Boot applications. (part2)

Willy De Keyser
Sep 16, 2022

--

Spring Boot HTTP Interfaces.

In Part 2, we will start by creating and configuring the Dashboard app.

Create a new Spring Boot app with the following dependencies.
Choose Spring Boot 3.0.0-SNAPSHOT and Java 17

Modify the application.properties

Create /src/main.resource/sschema.sql

Now we create 3 new classes.

Todo

TodoRepository

DashboardController

Launch the application and test the app in Postman or Imsomnia.

Create 1 Todo with Postman.

Open http://localhost:8081/api/dashboard/todos with your favorite browser.

Find the code om Gihub.

Youtube

Next part.

--

--