91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

JDBC如何實現查詢Map轉對象

發布時間:2020-11-02 15:11:55 來源:億速云 閱讀:178 作者:Leah 欄目:開發技術

本篇文章為大家展示了JDBC如何實現查詢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,然后根據列的屬性名稱從Map中獲得響應的值,然后賦值給這個對象的屬性。

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

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; 
} 

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

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) { 
  } 
} 

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

/**  
 * 返回一個對象的屬性和屬性值
 */   
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);
}

上述內容就是JDBC如何實現查詢Map轉對象,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

曲阜市| 达州市| 浠水县| 涞源县| 银川市| 东源县| 五家渠市| 富顺县| 平度市| 七台河市| 洪江市| 房产| 元氏县| 康平县| 泉州市| 繁昌县| 合川市| 郁南县| 布拖县| 北流市| 肇庆市| 钦州市| 姜堰市| 香河县| 台湾省| 平塘县| 会昌县| 资讯| 紫阳县| 兴隆县| 阿荣旗| 磐安县| 开鲁县| 响水县| 丹江口市| 福建省| 临泽县| 和顺县| 正阳县| 射洪县| 峨眉山市|