RowMapper

韓師學子--胖佳發表於2019-03-10

                              RowMapper

 

轉載:https://blog.csdn.net/fishsr/article/details/23188929

1、spring 中的 RowMapper 
sping中的RowMapper可以將資料中的每一行資料封裝成使用者定義的類。
我們在資料庫查詢中,如果返回的型別是使用者自定義的型別(其實我們在資料庫查詢中大部分返回的都是自定義的類)則需要包裝,如果是Java自定義的型別,如:String則不需要。
如果sping與hibernate 相結合了,基本上是用不到,大多數都是在spring單獨使用時用到,常見的情況就是與JdbcTemplate一起使用。
可以通過建立內部類實現RowMapper介面,RowMapper中有一個mapRow方法,所以實現RowMapper介面一定要實現mapRow方法,而對自定義類的包裝就在mapRow方法中實現。

這裡只是一個簡單的例子:

public class TestDao {
private JdbcTemplate jt;
public void setJt(JdbcTemplate jt) {
this.jt = jt;
}
public List<TNpc> getAll(){
String sql = "select * from t_npc";
//使用
List list = jt.query(sql, new NpcRowMapper());
return list;
}
/**
* 定義內部類實現RowMapper介面
*/
public class NpcRowMapper implements RowMapper{
//實現mapRow方法
public Object mapRow(ResultSet rs, int num) throws SQLException {
//對類進行封裝
TNpc npc = new TNpc();
npc.setId(rs.getLong("id"));
npc.setName(rs.getString("name"));
return npc;
} 
}
}

2、Spring JdbcTemplate 查詢方法中的RowMapper實現彙總 

在內部建立內聯類實現RowMapper介面 
 

import java.sql.ResultSet; 
import java.sql.SQLException; 
import java.sql.Types; 
import java.util.List; 

import org.springframework.jdbc.core.JdbcTemplate; 
import org.springframework.jdbc.core.RowMapper; 

import hysteria.contact.dao.ItemDAO; 
import hysteria.contact.domain.Item; 

public class ItemDAOImpl implements ItemDAO { 
private JdbcTemplate jdbcTemplate; 

public void setJdbcTemplate(JdbcTemplate jdbcTemplate) { 
this.jdbcTemplate = jdbcTemplate; 
} 

public Item insert(Item item) { 
String sql = "INSERT INTO items(user_id,name,phone,email) VALUES(?,?,?,?)"; 
Object[] params = new Object[]{item.getUserId(),item.getName(),item.getPhone(),item.getEmail()}; 
int[] types = new int[]{Types.INTEGER,Types.VARCHAR,Types.CHAR,Types.VARCHAR}; 
jdbcTemplate.update(sql,params,types); 
return item; 
} 

public Item update(Item item) { 
String sql = "UPDATE items SET name = ?, phone = ?, email = ? WHERE id = ?"; 
Object[] params = new Object[] {item.getName(),item.getPhone(),item.getEmail(),item.getId()}; 
int[] types = new int[] {Types.VARCHAR,Types.CHAR,Types.VARCHAR,Types.VARCHAR,Types.INTEGER}; 
jdbcTemplate.update(sql,params,types); 

return item; 
} 

public void delete(Item item) { 
String sql = "DELETE FROM items WHERE id = ?"; 
Object[] params = new Object[] {item.getId()}; 
int[] types = new int[]{Types.INTEGER}; 
jdbcTemplate.update(sql,params,types); 
} 

public Item findById(int id) { 
String sql = "SELECT * FROM items WHERE id = ?"; 
Object[] params = new Object[] {id}; 
int[] types = new int[] {Types.INTEGER}; 
List items = jdbcTemplate.query(sql,params,types,new ItemMapper()); 
if(items.isEmpty()){ 
return null; 
} 
return (Item)items.get(0); 
} 

public List<Item> findAll() { 
String sql = "SELECT * FROM items"; 
return jdbcTemplate.query(sql,new ItemMapper()); 
} 


public List<Item> findAllByUser(int user_id) { 
String sql = "SELECT * FROM items WHERE user_id = ?"; 
Object[] params = new Object[]{user_id}; 
int[] types = new int[]{Types.INTEGER}; 
List items = jdbcTemplate.query(sql,params,types,new ItemMapper()); 
return items; 
} 

protected class ItemMapper implements RowMapper { 

public Object mapRow(ResultSet rs, int rowNum) throws SQLException { 
Item item = new Item(); 
item.setId(rs.getInt("id")); 
item.setUserId(rs.getInt("user_id")); 
item.setName(rs.getString("name")); 
item.setPhone(rs.getString("phone")); 
item.setEmail(rs.getString("email")); 

return item; 
} 

} 


}