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'