Skip to content
Snippets Groups Projects
Commit 47836f08 authored by jan fockaert's avatar jan fockaert
Browse files

Spring Boot Admin server with UI and DockerFile.

parents
No related branches found
No related tags found
No related merge requests found
.idea/
/target
/output
*.iml
.intellij
#
# Docker file for Spring Boot Admin
#
FROM maven:3.3.9-jdk-8-onbuild-alpine
MAINTAINER Merapar
ENV TZ UTC
\ No newline at end of file
pom.xml 0 → 100644
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.merapar</groupId>
<artifactId>spring-boot-admin</artifactId>
<version>1.4.4</version>
<packaging>jar</packaging>
<name>spring-boot-admin</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<snippetsDirectory>${project.build.directory}/generated-snippets</snippetsDirectory>
</properties>
<dependencies>
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-server</artifactId>
<version>1.4.4</version>
</dependency>
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-server-ui</artifactId>
<version>1.4.4</version>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Brixton.SR5</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
package com.merapar.springbootadmin;
import de.codecentric.boot.admin.config.EnableAdminServer;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.Configuration;
@Configuration
@EnableAutoConfiguration
@EnableAdminServer
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
: ;;
:::::: ;;;;;;;
::::::::: ;;;;;;;;;
:::::::::::: ;;;;;;;;;;;;
:+++:::::::::: ;;;;;;;;;;+++;
:'''' ::::::::: ;;;;;;;;;; ++++;
''''' ::::::::: ;;;;;;;;; '''''
;;;;; :::::::::: ;;;;;;;;;; '''''
;;;;; :::::::::: ;;;;;;;;;; '''''
;;;;; :::::::;;;;;;;;;;; '''''
;;;;; :::::;;;;;;;;;; '''''
;;;;; :;;;;;;;;;;; ''''' .,. .:. .,. `.,. ..,. .... `.,. `.,.
;;;;; ';;;;;;;;;'' ;;;;; .+++++++++;++++++++' +++++++++ +++++++ +++++++++++ ;+++++++++' +++++++++++. `+++++++
;;;;; ''';;;;;;''''; ;;;;; ++++++++++++++++++++++ +++++++++++, .++++++++ ++++++++++++ +++++++++++++ ++++++++++++: :++++++++
;;;;; ''''';;;;;'''';;;; ;;;;; ++++++++++++++++++++++ +++++++++++++ :++++++++ ++++++++++++' ++++++++++++++ '++++++++++++ ;++++++++
;;;;; ''''''';; '';;;;;;; ;;;;; ++++. :++++` `++++: ++++` ++++: ;++++ +++++ ++++ +++++ .++++. ;++++
;;;;; ++'''''' ;;;;;;': ;;;;; ++++ ++++, +++++ :+++' `++++ ;++++ ++++ ++++ ++++. ++++: ;+++;
;;;;; ;+++''' ;;''':: ;;;;; ++++ ++++: :++++ ++++ ++++ ;++++ ++++ ++++ ++++' ;+++; ;+++;
::::: ;+++'' '''':: ;;;;; ++++ ++++: :++++ ++++ ++++ ;++++ +++++++++++ ++++ :++++ :++++++++++; ;+++;
::::: ;;;++ +::: ;;;;; ++++ ++++: :++++ +++++++++++++++ ;++++ '++++++++++++ ++++ .++++ ++++++++++++; ;+++;
::::: ;;;;; ::::: ;;;;; ++++ ++++: :++++ +++++++++++++++ ;++++ .++++++;:.++++ ++++ .++++ ++++++':,'+++; ;+++;
::::: ;;;;;; :::::: ;;;;; ++++ ++++: :++++ ++++++++++++:. ;++++ ++++' ++++ ++++ :++++ ++++ ;+++; ;+++;
::::: ;;;;;;;; :::::::: ;;;;; ++++ ++++: :++++ ++++` ;++++ ++++ ++++ ++++ ;++++ :++++ ;+++; ;+++;
::::: ;;;;;;;; :::::::: ;;;;; ++++ ++++: :++++ :+++' ;++++ ++++ ++++ ++++ ++++: :+++; ;+++; ;+++;
::::: ;;;;;;;;; ::::::::: ;;;;; ++++ ++++: :++++ ++++ ;++++ ++++` ++++ ++++ ,++++ :++++ '+++; ;+++;
::::: ;;;;;;;;:::::::::: ;;;;; ++++ ++++: :++++ +++++++++++++` ;++++ +++++'::;+++++ ++++++;+++++++ +++++:::+++++: ;+++;
::::: ;;;;:::::::::: ;;;;; ++++ ++++: :++++ ++++++++++++: ;++++ +++++++++++++ +++++++++++++ +++++++++++++: ;+++;
::::: ;::::::::: ;;;;; ++++ ++++: :++++ +++++++++++; ;++++ .+++++++++++. ++++++++++++` +++++++++++' ;+++;
::::: :::::::::''' ;;;;; :::: ::::. .:::: `;++++';. ,:::: .'++++;. ++++,'+++;` :++++': ,:::,
::::: ;;;::::::''''''' ;;;;; ++++
::::: ;;;;;;::::''''''''' ;;;;; ++++
::::: ;;;;;;;;; ''''''''' ;;;;; ++++
::::: ;;;;;;;;;; '''''''''' ;;;;; ++++
::::: ;;;;;;;;;; '''''''''' ;;;;; ++++
::::: ;;;;;;;;; ''''''''' ;;;;;
::::''';;;;;; '''''''''+;;;;
::::''''';;; ''''''++;;;;
:::++'''' ''++++;;;
:::++' ++;;;;
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment