728x90

 

자바와 db를 연결하는 부분에서 공통적으로 자주 사용되는 코드를 모아 끌어 쓸 수 있게하는

템플릿 클래스에서 Connection 부분 코드 해보았다

 

public static Connection getConnection(){

    Connection conn = null;

    try{

        Class.forName("oracle.jdbc.driver.OracleDriver");

        conn = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:xe", "Test", "Test");

    } catch(ClassNotFoundException e){

    	e.printStackTrace();

    } catch(SQLException e){

    	e.printStackTrace();

    }

    return conn;

}
728x90
반응형

+ Recent posts