토리맘의 한글라이즈 프로젝트 logo 토리맘의 한글라이즈 프로젝트

스프링 부트 공식 레퍼런스를 한글로 번역한 문서입니다.

전체 목차는 여기에 있습니다.

목차


8.9. Process Monitoring

spring-boot 모듈에선, 프로세스를 모니터링할 때 보통 유용한 파일을 생성해주는 두 가지 클래스를 찾을 수 있다:

이 두 writer는 기본적으론 활성화되지 않지만, 아래 방법으로 활성화할 수 있다:

8.9.1. Extending Configuration

아래 예시처럼 META-INF/spring.factories 파일에서 PID 파일을 작성하는 리스너를 활성화할 수 있다:

org.springframework.context.ApplicationListener=\
org.springframework.boot.context.ApplicationPidFileWriter,\
org.springframework.boot.web.context.WebServerPortFileWriter

8.9.2. Programmatically

SpringApplication.addListeners(…) 메소드를 호출해 원하는 Writer 객체를 전달해도 리스너를 활성화할 수 있다. 이때는 Writer 생성자에서 파일 이름과 경로를 커스텀하는 것도 가능하다.


Next :
Cloud Foundry Support
클라우드 파운드리에서 지원하는 액추에이터 엔드포인트 소개

전체 목차는 여기에 있습니다.

<< >>

TOP