스프링 프로젝트와 mariadb 연결 방법을 알아보자 1. build.gradle implementation 'org.springframework.boot:spring-boot-starter-data-jpa' developmentOnly 'org.springframework.boot:spring-boot-devtools' runtimeOnly 'org.mariadb.jdbc:mariadb-java-client' 2. application.property spring.datasource.url=jdbc:mariadb://localhost:3306/malldb spring.datasource.driver-class-name=org.mariadb.jdbc.Driver spring.datasource.usern..