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

+ Recent posts