🌝Coding/🌟SpringBoot

[SpringBoot] DB 연결

뿌야._. 2023. 11. 20. 22:44

💡build.gradle

// dependencies 추가

runtimeOnly 'org.mariadb.jdbc:mariadb-java-client'

 

💡application.yml

spring:
  datasource:
    url: jdbc:mariadb://localhost:3306/[schema]?serverTimezone=UTC
    username: [DB username]
    password: [DB password]
    driver-class-name: org.mariadb.jdbc.Driver