Christmas Pikachu MySql JDBCUitl 설정 (JAVA)
개발일지/설치 및 셋팅

MySql JDBCUitl 설정 (JAVA)

ZI_CO 2024. 3. 3.
package com.spring.biz.common;

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.SQLException;

public class JDBCUtil {
	
	static final String driverName="com.mysql.cj.jdbc.Driver";
	static final String url="jdbc:mysql://localhost:3306/test";
	static final String user="root";
	static final String passwd="1234";
	
	public static Connection connect() {
		Connection conn=null;
		
		try {
			Class.forName(driverName);
			
			conn=DriverManager.getConnection(url,user,passwd);
		} catch (ClassNotFoundException | SQLException e) {
			e.printStackTrace();
		}
		
		return conn;
	}
	
	public static void disconnect(PreparedStatement pstmt, Connection conn) {
		try {
			pstmt.close();
			conn.close();
		} catch (SQLException e) {
			e.printStackTrace();
		}
	}
	
}

'개발일지 > 설치 및 셋팅' 카테고리의 다른 글

옵시디언 설치  (0) 2024.05.13
STS4에서 JSP Editor 사용하기  (0) 2024.03.13
이클립스 경로 선택 창 설정  (0) 2024.01.19
이클립스 jsp 자동정렬 설정  (0) 2024.01.19
STS 단축키 설정 및 셋팅  (0) 2023.09.14

댓글