반응형

1. 시험환경

    ˙ SpringBoot

 

2. 목적

    ˙ SpringBoot 프로젝트에 MariaDB 연동 설정한다.

 

3. 적용

    pom.xml 설정

1
2
3
4
5
6
7
8
9
10
11
12
13
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
    <groupId>org.mariadb.jdbc</groupId>
    <artifactId>mariadb-java-client</artifactId>
    <scope>runtime</scope>
</dependency>
cs

 

 

     application.properties 설정

1
2
3
4
5
6
spring.datasource.driver-class-name=org.mariadb.jdbc.Driver
spring.datasource.url=jdbc:mariadb://localhost:포트/DB명
spring.datasource.username=계정
spring.datasource.password=비밀번호
 
spring.jpa.show-sql=true
cs

 

 

※ 내용이 도움 되셨다면 광고 클릭 한번 부탁드립니다 ※

반응형

+ Recent posts