用過spring boot admin2.0的人 再回去用spring boot admin 1.5 就會感覺像是退化了一樣,但是默認(rèn)情況下spring boot 1.5.x不能使用 admin2.0的內(nèi)容
下面是頁面對比

這是admin1.5的頁面 用angular.js寫的 雖然功能都有 但是頁面難看

這是2.0的頁面是不是比1.5好看不少
我現(xiàn)在的想法是還是用spring boot1.5 但是 使用admin2.0的功能
首先創(chuàng)建一個spring boot項目 作為admin的server端
pom文件如下
<?xml version="1.0" encoding="UTF-8"?>
<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.example</groupId>
<artifactId>admin</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>dev-admin</name>
<description>Demo project for Spring Boot</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.3.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-starter-server</artifactId>
<version>2.0.1</version>
</dependency>
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-server-ui</artifactId>
<version>2.0.1</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mail</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
啟動類上加上spring-boot-admin的配置
package com.example.demo;
import de.codecentric.boot.admin.server.config.EnableAdminServer;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.Configuration;
@Configuration
@EnableAutoConfiguration
@EnableAdminServer
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
application.properties配置如下
server.port=1125
spring.application.name= admin2.0
接下來再創(chuàng)建一個spring boot項目使用spring boot 1.5版本
pom文件如下
<?xml version="1.0" encoding="UTF-8"?>
<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.example</groupId>
<artifactId>admin1.5-client</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>admin1.5-client</name>
<description>Demo project for Spring Boot</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.14.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-starter-client</artifactId>
<version>1.5.6</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
啟動類上不需要做任何配置
重點說一下application.properties配置
spring.boot.admin.auto-registration = true
spring.boot.admin.url = http://localhost:1125
spring.boot.admin.api-path = instances
management.security.enabled = false
注意,這里的配置嚴(yán)格按照這種寫法。當(dāng)然application.name和server.port還是要自己指定。
現(xiàn)在啟動admin-server和當(dāng)前這個spirng boot1.5項目(我自己做了一個基于spirng boot 2.0的例子做對比)

左邊的是基于spring boot 1.5 右邊的服務(wù)基于spring boot 2.0
可以看到spring boot1.5的被注冊上來了,分別點擊詳情


可以發(fā)現(xiàn) 他們還是有一定的區(qū)別,一些spring boot admin 2.0的功能 spring boot 1.5 不能用,但是原先spring boot admin 1.5 的功能全部保留??梢宰约喊l(fā)掘一下。
我將這些示例的代碼都放到了github上,down下來就可以直接運(yùn)行看效果。歡迎star和fork。
地址:
github https://github.com/p555iii/spring-boot-admin1.5to2.0
碼云 https://gitee.com/github-p555iii/spring-boot-admin1.5to2.0