最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

JDBC查詢Map轉(zhuǎn)對象實現(xiàn)過程詳解

 更新時間:2020年10月31日 11:51:47   作者:cuisuqiang  
這篇文章主要介紹了JDBC查詢Map轉(zhuǎn)對象實現(xiàn)過程詳解,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下

雖然項目中都夾雜了Hibernate的支持,但是團隊開發(fā)中,很多人為了編寫特殊查詢的代碼時都使用了JDBC進行查詢。JDBC查詢后返回的是一個List集合,List中組裝的是Map,一個Map就是一個對應(yīng)的對象。但是接口不能直接返回Map,都是返回的對象,以方便自己和其他人使用,為了轉(zhuǎn)換這個Map,往往寫這樣的代碼:

@SuppressWarnings("unchecked") 
public static MS_Mont analyzeMapToMS_Mont(Map map){ 
  MS_Mont obj = new MS_Mont(); 
  if(null != map.get("montNo")) obj.setMontNo(Integer.parseInt(map.get("montNo").toString())); 
  if(null != map.get("montName")) obj.setMontName(map.get("montName").toString()); 
  if(null != map.get("montType")) obj.setMontType(Integer.parseInt(map.get("montType").toString())); 
  if(null != map.get("montLength")) obj.setMontLength(Integer.parseInt(map.get("montLength").toString())); 
  if(null != map.get("montDesc")) obj.setMontDesc(map.get("montDesc").toString()); 
  if(null != map.get("bigType")) obj.setBigType(Integer.parseInt(map.get("bigType").toString())); 
  if(null != map.get("bigTypeName")) obj.setBigTypeName(map.get("bigTypeName").toString()); 
  if(null != map.get("littleType")) obj.setLittleType(Integer.parseInt(map.get("littleType").toString())); 
  if(null != map.get("littleTypeName")) obj.setLittleTypeName(map.get("littleTypeName").toString()); 
  if(null != map.get("insertTime")) obj.setInsertTime(map.get("insertTime").toString()); 
  if(null != map.get("updateTime")) obj.setUpdateTime(map.get("updateTime").toString()); 
  if(null != map.get("userNoRe")) obj.setUserNoRe(Integer.parseInt(map.get("userNoRe").toString())); 
  if(null != map.get("userNoLast")) obj.setUserNoLast(Integer.parseInt(map.get("userNoLast").toString())); 
  return obj; 
} 

很麻煩,很多,很枯燥。

為了解決這個問題,我列出一個解決方法,寫一個方法,傳入要賦值的對象和Map,然后根據(jù)列的屬性名稱從Map中獲得響應(yīng)的值,然后賦值給這個對象的屬性。

例如,這里寫了一個簡單的查詢:

public CM_Line getObjectBean(int lineNo) { 
  try { 
    String sql = "select * from cm_line where lineNo=?"; 
    Object[] obj = new Object[]{ lineNo }; 
    List rows = jdbcTemplate.queryForList( sql, obj ); 
    if(null != rows && rows.size() > 0) { 
      CM_Line line = new CM_Line(); 
      return (CM_Line) line.analyzeMap((Map)rows.get(0)); 
    } else { 
      return null; 
    } 
  } catch (Exception e) { 
    logger.error(e); 
  } 
  return null; 
} 

然后我們調(diào)用了他的analyzeMap方法,這個方法把當前對象當作要賦值的對象,然后調(diào)用公用方法進行組裝:

public Object analyzeMap(Map<String, Object> para){ 
  Object obj = this; 
  ObjectUtil.setValToObj(obj, para); 
  return obj; 
} 

公用方法:

public synchronized static void setValToObj(Object entityName, Map<String, Object> para){ 
  try { 
    Class c = entityName.getClass(); 
    // 獲得對象屬性   
    Field field[] = c.getDeclaredFields(); 
    for (Field f : field) {  
      try { 
        PropertyDescriptor pd = new PropertyDescriptor(f.getName(), c);  
        Method writeMethod = pd.getWriteMethod(); 
        if(!CommonCheck.isNullOrEmpty(para.get(f.getName()))) 
          writeMethod.invoke(entityName, para.get(f.getName())); 
      } catch (Exception e) { 
      } 
    } 
  } catch (Exception e) { 
  } 
} 

下面就有人說了,那根據(jù)對象獲得這個對象的Map怎么搞,這個之前已經(jīng)寫過了,不這里仍然把代碼放一下:

/**  
 * 返回一個對象的屬性和屬性值
 */   
public synchronized static LinkedHashMap<String,String> getProAndValMap(Object entityName) {  
	LinkedHashMap<String,String> map = new LinkedHashMap<String, String>();  
  try {  
    Class c = entityName.getClass();  
    // 獲得對象屬性  
    Field field[] = c.getDeclaredFields();   
    for (Field f : field) {
      Object v = invokeMethod(entityName, f.getName(), null);  
      if(null != v) map.put(f.getName(), v.toString());
      else map.put(f.getName(), "");
    }  
  } catch (Exception e) {  
    map = null;  
  }  
  return map;  
}
/**
 * 獲得對象屬性的值
 */
private synchronized static Object invokeMethod(Object owner, String methodName,
		Object[] args) throws Exception {
	Class ownerClass = owner.getClass();
	methodName = methodName.substring(0, 1).toUpperCase() + methodName.substring(1);
	Method method = null;
	try {
		method = ownerClass.getMethod("get" + methodName);
	} catch (Exception e) {
	}
	return method.invoke(owner);
}

以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評論

兰州市| 隆昌县| 洪洞县| 阿鲁科尔沁旗| 南丹县| 杭州市| 平乐县| 海门市| 威海市| 获嘉县| 安庆市| 扎兰屯市| 北碚区| 绵竹市| 晋城| 玛沁县| 新源县| 沛县| 荔波县| 正蓝旗| 平江县| 衡东县| 河北省| 德钦县| 磐石市| 古田县| 静海县| 德令哈市| 德州市| 敦化市| 株洲市| 元氏县| 余庆县| 巴彦县| 宜阳县| 新宾| 黄梅县| 乐亭县| 铁岭市| 扶余县| 德保县|