Skip to content

Commit c06d052

Browse files
authored
Merge pull request #53 from CommitField/dev
chore : redis actuator ์ถ”๊ฐ€
2 parents 20e3c23 + 069c69c commit c06d052

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

โ€Žbuild.gradle.kts

+2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ dependencies {
4646
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
4747

4848
//redis
49+
implementation("org.springframework.boot:spring-boot-starter-actuator")
4950
implementation("org.springframework.boot:spring-boot-starter-data-redis")
51+
implementation("org.springframework.session:spring-session-data-redis")
5052

5153
// Security
5254
implementation("org.springframework.boot:spring-boot-starter-security")

โ€Žsrc/main/resources/application-prod.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,10 @@ logging:
3030
org.hibernate.SQL: INFO
3131
org.hibernate.orm.jdbc.bind: INFO
3232
org.hibernate.orm.jdbc.extract: INFO
33-
org.springframework.transaction.interceptor: INFO
33+
org.springframework.transaction.interceptor: INFO
34+
35+
management:
36+
endpoints:
37+
web:
38+
exposure:
39+
include: health,info,metrics # ํŠน์ • ์—”๋“œํฌ์ธํŠธ๋งŒ ๊ณต๊ฐœ

0 commit comments

Comments
ย (0)