您好,登錄后才能下訂單哦!
這篇“如何用java反射技術將sql操作與面向對象編程關聯起來”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“如何用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;
}
}
}
其中excuteQuery方法傳入三個參數,第一個是要查詢的sql語句,第二個是參數數組,第三個是要返回的對象類型。
返回值是一個list,list中的每個對象都是你傳入的對象類型。
經過這樣一種包裝,將sql與對象自然的封裝起來,不用每個查詢都查出來以后,再resultset.next(),再getString(),然后再setXxx();
當然,這只是元數據與java對象反射技術利用的冰山一角。
以上就是關于“如何用java反射技術將sql操作與面向對象編程關聯起來”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。