From ee525cfce9ff8725f689a0b05f2904fe3ba1b486 Mon Sep 17 00:00:00 2001 From: seokyung Date: Sun, 10 Mar 2024 00:18:40 +0900 Subject: [PATCH] =?UTF-8?q?chore=20:=20JWT=20=ED=86=A0=ED=81=B0=EA=B3=BC?= =?UTF-8?q?=20JPA=20=EC=82=AC=EC=9A=A9=EC=9D=84=20=EC=9C=84=ED=95=9C=20?= =?UTF-8?q?=EC=9D=98=EC=A1=B4=EC=84=B1=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * JPA를 통해 편하게 DB를 다루기 위함 * JWT 토큰을 통해 access, refresh 토큰 관리 --- server/spring/build.gradle | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/server/spring/build.gradle b/server/spring/build.gradle index 471cb54..b555efb 100644 --- a/server/spring/build.gradle +++ b/server/spring/build.gradle @@ -25,9 +25,15 @@ dependencies { implementation 'org.springframework.boot:spring-boot-starter-web' implementation 'org.springframework.boot:spring-boot-starter-cache' implementation 'org.springframework.boot:spring-boot-starter-data-redis' + implementation 'org.springframework.boot:spring-boot-starter-data-jpa' implementation 'org.springframework.boot:spring-boot-starter-webflux' implementation 'javax.persistence:javax.persistence-api:2.2' + implementation("org.springframework.boot:spring-boot-starter-security") + implementation("io.jsonwebtoken:jjwt-api:0.11.5") + runtimeOnly("io.jsonwebtoken:jjwt-impl:0.11.5") + runtimeOnly("io.jsonwebtoken:jjwt-jackson:0.11.5") + compileOnly 'org.projectlombok:lombok' runtimeOnly 'com.mysql:mysql-connector-j'