java反射技術的應用

zgy13121發表於2008-04-14

如何用java反射技術將sql操作與物件導向程式設計關聯起來

請看一例


public class SqlUtil extends BaseApplogic {

public List excuteQuery(String sql, Object[] paras, Object voo)
throws AppException {
DBPersistenceManager dbpm = this.getFnmsDBPM();
List list=new ArrayList();
try {
DataSet ds = (DataSet) dbpm.executeQuery(sql, paras);

DataSetMetaData dsmd = ds.getDataSetMetaData();

Field[] fd = voo.getClass().getDeclaredFields();
String className = voo.getClass().getName();
int size = fd.length;
Method md[]=new Method[size];
//構造method[]
for (int i = 0; i < size; i++) {
Attribute attr=dsmd.getAttribute(fd[i].getName().toUpperCase());
if (null != attr) {
Field f = voo.getClass().getDeclaredField(fd[i].getName());
String type = f.getType().getName();
Class[] types=getTypes(type);
String methodName=getSetterName(fd[i].getName());
md[i] = voo.getClass().getMethod(
methodName,types);
}
}

while(ds.next()){
Object o = Class.forName(className).newInstance();
for (int i = 0; i < size; i++) {
if(null!=md[i]){
//呼叫
Attribute attr=dsmd.getAttribute(fd[i].getName().toUpperCase());
if (null==attr) continue;
Object[] pa=new Object[]{ds.getString(attr.getAttrName())};
md[i].invoke(o,pa);
}
}
list.add(o);
}
} catch (DrmException drme) {
this.handleException(drme);
} catch (Exception e) {
this.handleException(e);// 新增加的異常處理
} finally {
if (dbpm != null) {
dbpm.close();
}
}
return list;

}

//由屬性呼叫set方法
public static String getSetterName(String propName) {
return "set" + propName.substring(0, 1).toUpperCase()
+ propName.substring(1, propName.length());

}

// 取型別
public static Class[] getTypes(String type) {
if (type.equals("java.lang.String")) {
return new Class[] { String.class };
} else if (type.equals("int")) {
return new Class[] { Integer.TYPE };
} else if (type.equals("long")) {
return new Class[] { Long.TYPE };
} else if (type.equals("float")) {
return new Class[] { Float.TYPE };
} else {
System.out.println("no such type!");
return null;
}

}
}

[@more@]

其中excuteQuery方法傳入三個引數,第一個是要查詢的sql語句,第二個是引數陣列,第三個是要返回的物件型別。

返回值是一個list,list中的每個物件都是你傳入的物件型別。

經過這樣一種包裝,將sql與物件自然的封裝起來,不用每個查詢都查出來以後,再resultset.next(),再getString(),然後再setXxx();

當然,這只是後設資料與java物件反射技術利用的冰山一角。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/11419868/viewspace-1002535/,如需轉載,請註明出處,否則將追究法律責任。

相關文章