十springboot Admin

Posted 那只猴子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了十springboot Admin相关的知识,希望对你有一定的参考价值。

1、创建server端spring-boot-admin

2、添加依赖

<parent>

  <groupId>org.springframework.boot</groupId>

  <artifactId>spring-boot-starter-parent</artifactId>

  <version>2.0.5.RELEASE</version>

  <relativePath /> <!-- lookup parent from repository -->

</parent>

<dependencies>

  <dependency>

    <groupId>de.codecentric</groupId>

    <artifactId>spring-boot-admin-starter-server</artifactId>

    <version>2.0.0</version>

  </dependency>

  <dependency>

    <groupId>org.springframework.boot</groupId>

    <artifactId>spring-boot-starter-web</artifactId>

    </dependency>

</dependencies>

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

3、设置启动端口

  server.port=8088

4、创建启动类

@Configuration

@EnableAutoConfiguration

@EnableAdminServer

public class AdminServerApplication {

 

public static void main(String[] args) {

SpringApplication.run(AdminServerApplication.class, args);

}

}

 

 

 

 

 

 

 

 

 

5、创建客户端spring-boot

6、添加依赖

<dependency>

<groupId>de.codecentric</groupId>

<artifactId>spring-boot-admin-starter-client</artifactId>

<version>2.0.0</version>

</dependency>

 

 

 

 

 

 

7、修改application.properties

#关掉安全认证

management.security.enabled=false

spring.boot.admin.client.url:http://localhost:8088

8、localhost:8088启动服务端

 

以上是关于十springboot Admin的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot系列十二:SpringBoot整合 Shiro

springboot系列十springboot整合redis

SpringBoot内置生命周期事件详解 SpringBoot源码(十)

springboot系列十springboot集成PageHelper

SpringBoot入门十九,简单文件上传

SpringBoot入门十,添加junit单元测试