This is a simple admin interface for Spring Boot applications.
This application provides a simple GUI to administrate Spring Boot applications in some ways. At the moment it provides the following features for every registered application.
- Show name/id and version number
- Show online status
- Download main logfile
- Show details, like
- Java system properties
- Java environment properties
- Memory metrics
- Spring environment properties
Add the following dependency to your pom.xml.
<dependency> <groupId>de.codecentric</groupId> <artifactId>spring-boot-admin-server</artifactId> <version>1.0.2</version> </dependency> Create the Spring Boot Admin Server with only one single Annotation.
@Configuration @EnableAutoConfiguration @EnableAdminServer public class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); } } See also the example project in this repository.
Each application that want to register itself to the admin application has to include the spring-boot-starter-admin-client as dependency. This starter JAR includes some AutoConfiguration features that includes registering tasks, controller, etc.
<dependency> <groupId>de.codecentric</groupId> <artifactId>spring-boot-starter-admin-client</artifactId> <version>1.0.2</version> </dependency> Inside your application.properties you also have to define the URL of the Spring Boot Admin Server, e.g.
spring.boot.admin.url=http://localhost:8080 mvn clean packagemvn build-helper:parse-version versions:set -DnewVersion=${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion} mvn -Psign-artifacts clean deployExample:
mvn build-helper:parse-version versions:set -DnewVersion=1.0.0-SNAPSHOT mvn versions:commit

