February 2018
Intermediate to advanced
356 pages
9h 10m
English
It is a piece of cake to set up the application. We will need a new Spring Boot application, and to connect this new application with our service discovery implementation. Let's do it right now.
We can find the code on GitHub at https://github.com/PacktPublishing/Spring-5.0-By-Example/tree/master/Chapter08/admin. If you want to create a new application, go ahead; the process is similar to what we did in the previous chapters.
The project is a Spring Boot regular application, with two new dependencies:
<dependency> <groupId>de.codecentric</groupId> <artifactId>spring-boot-admin-server</artifactId> <version>1.5.6</version>v</dependency><dependency> <groupId>de.codecentric</groupId> <artifactId>spring-boot-admin-server-ui ...