您好,登录后才能下订单哦!
这篇“如何用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进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。