본문 바로가기
Study_Framework

[Spring] Spring Boot Admin 설정

by 타블로 2018. 12. 3.

# 서버 쪽

 

1. Application.java

 

@EnableAdminServer

 

2. pom.xml

 

<dependency>

<groupId>de.codecentric</groupId>

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

<version>2.1.1</version>

</dependency>

<dependency>

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

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

</dependency>

 

# 클라이언트 쪽

 

1. application.properties

server.port=8081

spring.boot.admin.client.url=http://localhost:8080  

management.endpoints.web.exposure.include=* 

 

2. pom.xml

 

<dependency>

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

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

</dependency>

 

<dependency>

<groupId>de.codecentric</groupId>

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

<version>2.1.1</version>

</dependency>