Everyday Dev System

의존성들 본문

내배캠 주요 학습/매일 공부

의존성들

chaeyoung- 2023. 6. 22. 14:37

의존성 추가

// Security
implementation 'org.springframework.boot:spring-boot-starter-security'

// JWT
compileOnly group: 'io.jsonwebtoken', name: 'jjwt-api', version: '0.11.5'
runtimeOnly group: 'io.jsonwebtoken', name: 'jjwt-impl', version: '0.11.5'
runtimeOnly group: 'io.jsonwebtoken', name: 'jjwt-jackson', version: '0.11.5'

// JPA
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'

// MySQL
runtimeOnly 'com.mysql:mysql-connector-j'

// json
implementation 'org.json:json:20230227'


implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-validation'

'내배캠 주요 학습 > 매일 공부' 카테고리의 다른 글

WIL_0702 : 스프링 부트와 JPA  (0) 2023.07.02
git 브랜치 전략이란  (0) 2023.06.29
매니저님의 꿀팁  (0) 2023.06.20
REST API 설계 규칙  (0) 2023.06.16
특강 회고  (0) 2023.06.15