File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed
Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ dependencies {
4949 implementation ' org.springframework.boot:spring-boot-starter-security'
5050 implementation ' org.springframework.boot:spring-boot-starter-validation'
5151 implementation ' org.springframework.boot:spring-boot-starter-web'
52+ implementation ' org.springframework.boot:spring-boot-starter-actuator'
5253 implementation ' org.springdoc:springdoc-openapi-starter-webmvc-ui:2.6.0'
5354 implementation ' org.springframework.boot:spring-boot-starter-oauth2-resource-server'
5455 implementation(" software.amazon.awssdk:cognitoidentityprovider:2.25.61" )
Original file line number Diff line number Diff line change @@ -25,6 +25,18 @@ spring:
2525 jwt :
2626 issuer-uri : ${COGNITO_ISSUER_URI:https://cognito-idp.ap-northeast-2.amazonaws.com/ap-northeast-2_xI18xw5er}
2727
28+ # Spring Boot Actuator 설정
29+ management :
30+ endpoints :
31+ web :
32+ exposure :
33+ include : health,info
34+ base-path : /actuator
35+ endpoint :
36+ health :
37+ show-details : when-authorized
38+ show-components : always
39+
2840# 공통 앱 설정 (기본값 포함)
2941app :
3042 cognito :
You can’t perform that action at this time.
0 commit comments