스프링 초기 Mysql 연동
자바 jdk -1.8
mysql -connector -java .jar
(maven library 자동다운로드)
maven Dependencies 확인
자신의 localhost 주소 및 스키마 작성
package org.zerock.web;
import java.sql.Connection; Junit Test 로 Mysql 연결 테스트
import java.sql.DriverManager;
import org.junit.Test;
public class MySQLConnectionTest {
private static final String DRIVER =
"com.mysql.jdbc.Driver";
private static final String URL =
"jdbc:mysql://localhost:3306/book_ex?useSSL=false";
private static final String USER =
"zerock";
private static final String PW =
"alstjr9200";
@Test
public void testConnection() throws Exception{
Class.forName(DRIVER);
try(Connection con = DriverManager.getConnection(URL, USER, PW)){
System.out.println(con);
}catch(Exception e){
e.printStackTrace();
}
}
}
다음시간엔 mybatis 연동
'프로그래밍 > SPRING' 카테고리의 다른 글
[Spring] 스프링 MVC 패턴 (0) | 2018.02.21 |
---|---|
[Spring] 스프링 네이버 로그인 API 연동 (2) | 2018.02.07 |
Spring Anntation (0) | 2018.01.30 |
[Spring] MyBatis 연동 (0) | 2018.01.23 |
스프링 한글 깨짐 인코딩 처리방법 (0) | 2018.01.22 |