[Spring]/springboot
[SpringBoot] 멀티 데이터베이스 설정하기 - Gradle 설정편
미나미나미
2022. 5. 22. 21:20
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'
}