W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
?ResultSetExtractor
?負(fù)責(zé)處理整個(gè)結(jié)果集,通常和 ?RowMapper
?配合使用,或者實(shí)現(xiàn)對(duì)結(jié)果集的更復(fù)雜處理。
舉一個(gè)例子查詢所有用戶,并且構(gòu)建一個(gè)用戶 ID 和 名字 的 Map 映射
String queryString = "select * from test_user";
ResultSetExtractor extractor = new ResultSetExtractor<Map<Integer, String>>() {
public Map<Integer, String> extractData(ResultSet rs) throws SQLException {
Map<Integer, String> hashMap = new HashMap<>();
while (rs.next()) {
int id = rs.getInt("id");
String name = rs.getString("name");
hashMap.put(id, name);
}
return hashMap;
}
};
Map<Integer, String> result = jdbcTemplate.query(queryString, extractor);
執(zhí)行結(jié)果為
{1=mali, 2=dative, 3=jon wes, 4=mary, 5=matt}
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: