Skip to content

Commit

Permalink
chore : JWT 토큰과 JPA 사용을 위한 의존성 추가
Browse files Browse the repository at this point in the history
* JPA를 통해 편하게 DB를 다루기 위함
* JWT 토큰을 통해 access, refresh 토큰 관리
  • Loading branch information
sk000801 committed Mar 9, 2024
1 parent 55945e6 commit ee525cf
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions server/spring/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down

0 comments on commit ee525cf

Please sign in to comment.