From 58900e233151d6ffbfe8a5acd0ed72a387b27272 Mon Sep 17 00:00:00 2001 From: dongHyo Date: Fri, 6 May 2022 13:33:30 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20security=20=EC=A3=BC=EC=84=9D=20?= =?UTF-8?q?=EB=B0=8F=20actuator=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit security 사용 시 주석 해제 (아직 사용하지 않아 주석처리) actuator 을 통해 health check 구현 --- server/build.gradle.kts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/build.gradle.kts b/server/build.gradle.kts index 7b0c872..318ca77 100644 --- a/server/build.gradle.kts +++ b/server/build.gradle.kts @@ -25,9 +25,10 @@ repositories { dependencies { implementation ("org.springframework.boot:spring-boot-starter-data-jpa") - implementation ("org.springframework.boot:spring-boot-starter-security") +// implementation ("org.springframework.boot:spring-boot-starter-security") implementation ("org.springframework.boot:spring-boot-starter-validation") implementation ("org.springframework.boot:spring-boot-starter-web") + implementation("org.springframework.boot:spring-boot-starter-actuator") implementation ("com.github.ulisesbocchio:jasypt-spring-boot-starter:3.0.4")