We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7edf2f commit 6cacd47Copy full SHA for 6cacd47
build.gradle
@@ -53,6 +53,9 @@ dependencies {
53
54
// AWS 자격 증명
55
implementation 'io.awspring.cloud:spring-cloud-aws-starter'
56
+
57
+ // 액추에이터 추가
58
+ implementation 'org.springframework.boot:spring-boot-starter-actuator'
59
}
60
61
tasks.named('test') {
src/main/resources/application.yml
@@ -25,3 +25,12 @@ spring:
25
flyway:
26
enabled: true
27
baseline-on-migrate: true
28
29
+management:
30
+ endpoints:
31
+ web:
32
+ exposure:
33
+ include: health
34
+ endpoint:
35
+ health:
36
+ show-details: always
0 commit comments