- 모든 부서에서 입력된 데이터를 공유할 수 있으며 범용적으로 사용할 수 있는 근로 인력 입력 프로그램 만들기
- 언어 : JAVA
- 버전: 17
- sprig boot version: 3.1.4
- spring.dependency-management version : 1.1.3
dependencies {
// redis
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
// validation
implementation 'org.springframework.boot:spring-boot-starter-validation'
// web
implementation 'org.springframework.boot:spring-boot-starter-web'
// lombok
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
// jwt
implementation 'io.jsonwebtoken:jjwt-api:0.11.5'
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.5'
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.5'
// mysql
runtimeOnly 'com.mysql:mysql-connector-j'
// security
implementation 'org.springframework.boot:spring-boot-starter-security'
// jpa
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
// configuration
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
// test
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'
}