티스토리 뷰

우선 Gradle Dependency에 Maria DB 드라이버를 추가해야 한다.

 

Maven Repository 에서 MariaDB Java Client를 검색하여, Gradle Dependency를 복사한다.

 

이후 아래와 같이 dependency를 추가하면 된다.

plugins {
    id 'org.springframework.boot' version '2.4.8'
    id 'io.spring.dependency-management' version '1.0.11.RELEASE'
    id 'java'
    id 'war'
}

group = 'com.choonham'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'

configurations {
    compileOnly {
        extendsFrom annotationProcessor
    }
}

repositories {
    mavenCentral()
}

dependencies {
    implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
    implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
    implementation 'org.springframework.boot:spring-boot-starter-web'
    compileOnly 'org.projectlombok:lombok'
    developmentOnly 'org.springframework.boot:spring-boot-devtools'
    annotationProcessor 'org.projectlombok:lombok'
    providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat'
    testImplementation 'org.springframework.boot:spring-boot-starter-test'
    
    implementation group: 'org.mariadb.jdbc', name: 'mariadb-java-client', version: '2.7.3'

}

test {
    useJUnitPlatform()
}

 

이제, application.properties 파일에 다음과 같이 작성하여 DB 설정을 끝마치면 사전 작업은 모두 끝이 난다.

 

◎application.properties

server.port=9090
spring.datasource.driver-class-name=org.mariadb.jdbc.Driver
spring.datasource.url=jdbc:mariadb://localhost:3308/choonham
spring.datasource.username=ROOT
spring.datasource.password=6725

 

Comments