gradle
implementation 'org.springframework.boot:spring-boot-starter-actuator'
properties
#health check
management.endpoints.web.base-path=/actuator
management.endpoints.web.path-mapping.health=health_check
management.endpoint.health.show-details=never
만약 security를 사용한다면,
.antMatchers("/actuator/health_check").permitAll()
을 해줘야 한다.
'개발 > Spring' 카테고리의 다른 글
Spring boot profile(AWS Secret Manager, Log4j2) (0) | 2022.04.06 |
---|---|
Spring boot Data JPA Hikari Master/Slave (Write,Read Only) 사용하기. (0) | 2022.04.06 |
Spring boot&React Cookie 설정 SameSite Cookie 변경된 크롬 80 쿠키 정책 (0) | 2022.04.06 |
Part.2 Spring boot 갯수 제한 이벤트 구현(Redis 이용) Redisson, Transaction, Sync(lock) 유저가 많이 몰릴때. (0) | 2022.04.06 |
Spring @RequestParam @RequestBody @ModelAttribute 차이 (0) | 2022.03.20 |