1. Gradle 설정
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'junit:junit:4.13.1'
compileOnly 'org.projectlombok:lombok'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
// postgresql
// https://mvnrepository.com/artifact/org.postgresql/postgresql
implementation group: 'org.postgresql', name: 'postgresql'
providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor"
// mybatis -----
implementation 'org.springframework.boot:spring-boot-starter-data-jdbc:2.6.7'
implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:2.2.2'
// ----- mybatis
// lombok -----
annotationProcessor 'org.projectlombok:lombok'
// ----- lombok
// 다중 DB JPA 속성 관련
implementation group: 'com.google.guava', name: 'guava', version: '31.1-jre'
}
'[Spring] > springboot' 카테고리의 다른 글
[SpringBoot] 멀티 데이터베이스(DB) 설정하기 Mybatis 편 (0) | 2022.05.22 |
---|---|
[SpringBoot] 멀티 데이터베이스(DB) 설정하기 JPA 편 (1) | 2022.05.22 |
[SpringBoot] 공공데이터포털 활용 과거 날씨 시간별 정보 받기 (0) | 2022.04.16 |
[공공데이터활용] 공휴일 정보 가져오기(JAVA 버전) (0) | 2022.04.06 |
[SpringBoot] RestAPI 파일업로드 - 2 (0) | 2022.02.24 |