데이터베이스 구현 클래스 초기 화 에 관 한 해결 방법

며칠 전에 데이터베이스 링크 풀 류 를 썼 는데 문제 가 있어 서 만 족 스 럽 지 못 하 게 해결 되 었 습 니 다. 그래서 붙 여서 방법 을 생각해 보라 고 했 습 니 다............................................................
package com.luoyu.persistence;

public interface ConnectionFactory {
public static final String CONNECTION_USERNAME = "connection.username";

public static final String CONNECTION_PASSWORD = "connection.password";

public static final String CONNECTION_URL = "connection.url";

public static final String DRIVER_CLASS = "driver.class";


}
 
그리고 DataSourceConnection Factory 구현 클래스:
package com.luoyu.persistence;

import java.io.IOException;
import java.sql.Connection;
import java.sql.SQLException;
import java.util.Properties;
import oracle.jdbc.pool.OracleDataSource;

public class DataSourceConnectionFactory implements ConnectionFactory {
private static DataSourceConnectionFactory instance;
private static Properties config;
@SuppressWarnings( { "unchecked", "unused" })
private static Class driver;
private static OracleServerDataSource Orads;
private static ThreadLocal<Connection> threadLocal = new ThreadLocal<Connection>();
static{
init();
}
public static void init(){
try {
config = new Properties();
config.load(ConnectionFactory.class
.getResourceAsStream("/config.properties"));
Orads= new OracleDataSource();
driver = Class.forName(config.getProperty(DRIVER_CLASS));
Orads.setUser(config.getProperty(CONNECTION_USERNAME));
SQLds.setPassword(config.getProperty(CONNECTION_PASSWORD));
Orads.setURL(config.getProperty(CONNECTION_URL));
} catch (IOException e) {
e.printStackTrace();
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
}
private static DataSourceConnectionFactory getInstance() {
if (instance == null) {
instance = new DataSourceConnectionFactory();
}
return instance;
}

public static void closeConnect() throws SQLException {
if (!threadLocal.get().isClosed() && threadLocal.get() != null) {
threadLocal.get().close();
}
threadLocal.set(null);
}

public static void destory() {
instance = null;
config = null;
driver = null;
Orads= null;
}
private Connection getConnect() throws SQLException {
if (threadLocal.get() == null || threadLocal.get().isClosed()) {
threadLocal.set(Orads.getConnection());
}
return threadLocal.get();
}
public static Connection getConnection()throws SQLException{
Connection connection = getInstance().getConnect();
return connection;
}
}
 
config. properties 설정 파일:
connection.username=system
connection.password=admin
connectino.url=jdbc:oracle:thin://localhost:1521:orcl
driver.class=oracle.jdbc.driver.OracleDriver
 
자, 문제 가 생 겼 습 니 다. 실현 류 에서 그 정적 블록 은 좀 불필요 해 보이 지만 제 가 제거 한 후에 항상 thread Local. set (Orads. getConnection () 을 보고 합 니 다.의 빈 포인터 가 이상 합 니 다. 데이터 원본 Orads 가 초기 화 에 성공 하지 못 한 것 이 분명 합 니 다. 만약 에 Public static void init () 방법 을 정적 블록 으로 바 꾸 면 됩 니 다. 그러나 저 는 프론트 데스크 톱 에서 모니터 를 쓸 수 없습니다. init () 방법 이 없 기 때 문 입 니 다.전체 사례 디자인 모델 을 사용 하여 대외 적 으로 getInstance () 방법 을 숨 기 고 destory (), init () 와 getConnection () 만 제공 하기 때문에 이 문 제 를 해결 할 수 없습니다.

좋은 웹페이지 즐겨찾기