程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> SqlServer數據庫 >> 關於SqlServer >> 共享一勞永逸的數據庫編碼解決方案

共享一勞永逸的數據庫編碼解決方案

編輯:關於SqlServer

問題提出

現在幾乎所有的應用系統都無法避免使用數據庫系統。在JAVA世界裡訪問數據庫是一件非常輕松的事情,JDBC為JAVA應用程序訪問數據庫提供了一個統一的接口,通過使用JDBC接口開發者無需關心系統最終采用哪種數據庫,因為JDBC僅僅是定義了訪問幾個JAVA的接口類,具體的實現是由數據庫廠商提供的,這種做法其實與其他數據庫連接方式例如ODBC是類似的。但是在實際的應用過程中,開發者發現離JDBC設計的初衷還是有一定距離,就比如說在存儲字符串時的編碼問題,我想很多開發者都會遇見這個問題,倒不是因為說解決它有什麼技術方面的難度,而是它的的確確非常繁瑣。我們必須在每次寫入或者讀出字符串的時候進行編碼和反編碼處理;或者說我們可以寫一個方法可以進行編碼處理的,但又必須在每次數據庫操作的時候調用,雖然調用很簡單,可是我非得這樣嗎?要是忘了編碼那又要DEBUG了。當然你可能覺得這並沒有什麼,或者你可能很勤快,喜歡寫大量重復的代碼,可是你難道沒有覺得這種繁瑣的工作正在浪費你過於寶貴的青春嗎?停止你的鍵盤輸入,讓我們來解決這個問題吧!

解決思路

在傳統的應用程序中數據庫操作部分我們可以想象成兩層,如圖所示:一個是數據庫的"連接池",另外一個業務數據操作層。在這裡數據庫的連接池是廣義的,你可以把JDBC中的DriverManager也當成是連接池,具體的意思就是我們可以通過這層來獲取到指定數據庫的連接而不去關心它是怎麼獲取的。如果這個時候數據庫系統(有如Informix,SQL Server)要求對字符串進行轉碼才能存儲(例如最常見的GBK->;ISO8859_1轉碼),那我們就必須在業務數據操作層來進行,這樣有多少業務數據操作我們就要做多少編碼轉碼的工作,太麻煩了,代碼中充斥中大量重復的內容。本文提出的解決方案就是利用對獲取到的數據庫連接實例進行二次封裝,也就是在數據庫連接池與業務數據操作層之間加入了連接封裝層,當然了,我們也完全可以直接將連接封裝集成到數據庫連接池內部。

我們知道進行編碼和轉碼工作都是集中在JDBC的兩個接口PreparedStatement和ResultSet上進行的,主要涉及PreparedStatement的setString方法以及ResultSet的getString方法。前面我們講過需要加入一個連接封裝層來對數據庫連接實例進行二次封裝,但是怎麼通過這個封裝來改變PreparedStatement和ResultSet這兩個接口的行為呢?這個問題其實也很簡單,因為PreparedStatement接口必須通過Connection接口來獲取實例,而ResultSet接口又必須從Statement或者PreparedStatement接口來獲取實例,有了這樣的級聯關系,問題也就迎刃而解了。還是利用我在文章《使用JAVA動態代理實現數據庫連接池》中使用的動態接口代理技術。首先我們設計Connection接口的代理類_Connection,這個代理類接管了Connection接口中所有可能獲取到Statement或者PreparedStatement接口實例的方法,例如:prepareStatement和createStatement。改變這兩個方法使之返回的是經過接管後的Statement或者PreparedStatement實例。通過對於Statement接口也有相應的代理類_Statement,這個代理類接管用於獲取ResultSet接口實例的所有方法,包括對setString方法的接管以決定是否對字符串進行編碼處理。對於接口ResultSet的接管類_ResultSet就相應的比較簡單,它只需要處理getString方法即可。

關鍵代碼

前面我們大概介紹了這個解決方案的思路,下面我們給出關鍵的實現代碼包括Connection的代理類,Statement的代理類,ResultSet的代理類。這些代碼是在原來關於數據庫連接池實現的基礎上進行擴充使之增加對自動編碼處理的功能。有需要源碼打包的可以通過電子郵件跟我聯系。

_Connection.java
/*
 * Created on 2003-10-23 by Liudong
 */package lius.pool;import java.sql.*;import java.lang.reflect.*;
/ *
 *
 * 數據庫連接的代理類
 * @author Liudong
 */
class _Connection implements InvocationHandler{
  private Connection conn = null;
  private boolean coding = false;
  //指定是否進行字符串轉碼操作
  _Connection(Connection conn, boolean coding){
  this.conn = conn;
  this.coding = coding;
  initConnectionParam(this.conn);
}
/**
   * Returns the conn.
   * @return Connection
   */
  public Connection getConnection() {
    Class[] interfaces =conn.getClass().getInterfaces();
    if(interfaces==null||interfaces.length==0){
  interfaces = new Class[1];
  interfaces[0] = Connection.class;
    }
  Connection conn2 = (Connection)Proxy.newProxyInstance(
  conn.getClass().getClassLoader(), interfaces,this);
  return conn2;
}
  /**
   * @see java.lang.reflect.InvocationHandler#invoke
   */
  public Object invoke(Object proxy, Method m, Object[] args) throws Throwable {  
    String method = m.getName();
    //調用相應的操作
    Object obj = null;
    try{
      obj = m.invoke(conn, args);
      //接管用於獲取語句句柄實例的方法
         if((CS.equals(method)||PS.equals(method))&&coding)
        return new _Statement((Statement)obj,true).getStatement();
        } catch(InvocationTargetException e) {
      throw e.getTargetException();
    }
    return obj;
  }    private final static String PS = "prepareStatement";
  private final static String CS = "createStatement";}
_Statement.java
/*
 * Created on 2003-10-23 by Liudong
 */
package lius.pool;
import java.sql.*;
import java.lang.reflect.*;
/**
 * 數據庫語句對象實例的代理類
 * @author Liudong
 */
class _Statement implements InvocationHandler{
    private Statement statement ; //保存所接管對象的實例
    private boolean decode = false; //指定是否進行字符串轉碼
    public _Statement(Statement stmt,boolean decode) {
    this.statement = stmt;
    this.decode = decode;
  }
  /**
   * 獲取一個接管後的對象實例
   * @return
   */
  public Statement getStatement() {
    Class[] interfaces = statement.getClass().getInterfaces();
    if(interfaces==null||interfaces.length==0){
    interfaces = new Class[1];
    interfaces[0] = Statement.class;
    }
    Statement stmt = (Statement)Proxy.newProxyInstance(
      statement.getClass().getClassLoader(),
      interfaces,this);
    return stmt;
  }  
  /**  
   * 方法接管  
   */
  public Object invoke(Object proxy, Method m, Object[] args) throws Throwable {
    String method = m.getName(); //接管setString方法
    if(decode && SETSTRING.equals(method)) {
      try{
        String param = (String)args[1];
      if(param!=null)
          param = new String(param.getBytes(),"8859_1");
        return m.invoke(statement,new Object[]{args[0],param});
      } catch(InvocationTargetException e){
        throw e.getTargetException();      }
  }
  //接管executeQuery方法  
  if(decode && EXECUTEQUERY.equals(method)){
      try{
        ResultSet rs = (ResultSet)m.invoke(statement,args);
        return new _ResultSet(rs,decode).getResultSet();
            }catch(InvocationTargetException e){
        throw e.getTargetException();
      }
    }    
    try{
      return m.invoke(statement, args);
    } catch(InvocationTargetException e) {
      throw e.getTargetException();
    }
  }
  //兩個要接管的方法名
  private final static String SETSTRING = "setString";
  private final static String EXECUTEQUERY = "executeQuery";
}
_ResultSet.java
/*
* Created on 2003-10-23 by Liudong
*/
package lius.pool;
import java.sql.ResultSet;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
/**
* 數據庫結果集的代理類
* @author Liudong
*/
class _ResultSet implements InvocationHandler{
  private ResultSet rs = null;
  private boolean decode = false;  
  public _ResultSet(ResultSet rs,boolean decode) {
    this.rs = rs;
    this.decode = decode;
  }
  public ResultSet getResultSet(){
    Class[] interfaces = rs.getClass().getInterfaces();
    if(interfaces==null||interfaces.length==0){
      interfaces = new Class[1];
      interfaces[0] = ResultSet.class;
    }
  ResultSet rs2 = (ResultSet)Proxy.newProxyInstance(rs.getClass().getClassLoader(),
      interfaces,this);
  return rs2;
  }
  /**
   * 結果getString方法
   */
  public Object invoke(Object proxy, Method m, Object[] args) throws Throwable {
    String method = m.getName();
    if(decode && GETSTRING.equals(method)){
      try{
        String result = (String)m.invoke(rs,args);
        if(result!=null)
          return new String(result.getBytes("8859_1"));
         return null;
          }catch(InvocationTargetException e){
        throw e.getTargetException();
      }
    }
    try{
      return m.invoke(rs, args);
    }catch(InvocationTargetException e){
      throw e.getTargetException();
    }
  }
  private final static String GETSTRING = "getString";
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved