◽ Spring, SpringBoot

[Spring - (8) ] Mysql 설정 및 테스트

설정


1. https://mvnrepository.com/artifact/mysql/mysql-connector-java 접속
2. 최신 버전 클릭
3. Maven 태그속 코드 복사

 

 

4. spring - 프로젝트 - pom.xml 파일 - 코드 삽입, 저장

 

5. mysql-connector-java ... jar 파일 다운로드 되어 있는걸 확인 할 수 있다.

 

 

 

테스트


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.smartbay.controller;
 
import java.sql.Connection;
import java.sql.DriverManager;
 
import org.junit.Test;
 
public class MySQLConnectionTest {
 
    private static final String url="jdbc:mysql://localhost:3306/test?serverTimezone=UTC";
    private static final String user="root";
    private static final String password="1111";
    
    @Test
    public void testConnection() throws Exception{
        
        try(Connection con = DriverManager.getConnection(url,user,password)){
            System.out.println(con);
        }catch(Exception e) {
            e.printStackTrace();
        }
    }
}
 
Color Scripter

테스트 성공 화면

푸터바