SMALL
Spring Boot Admin에서 기본적으로 타겟 client의 application.properties 설정값을 조회할 수 있다.
그럼 다음으로 해당 설정 값을 바꿀 수 있는 방법에 대해서 알아보자.
pom.xml ( dependency 설정 )
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-context</artifactId>
</dependency>
application.properties ( spring boot 설정 )
management.endpoint.env.post.enabled=true
위의 설정들을 추가하면 아래와 같이 해당 화면의 설정할 수 있는 부분이 생기게 된다.
LIST
'Spring > spring-boot-admin' 카테고리의 다른 글
[Spring] Spring Boot Admin Client 부가적인 메뉴 추가 (0) | 2021.06.24 |
---|---|
[Spring] Spring Boot Admin Kubernetes 환경에서 사용해보기 (0) | 2021.06.23 |
[Spring] Spring Boot Admin 사용해보기 (+Security) (0) | 2021.06.22 |
[Spring] Spring Boot Admin 사용해보기 (0) | 2021.06.21 |