随笔-38  评论-220  文章-4  trackbacks-0

(残梦追月原创,转载请注明)

本文地址:http://www.blogjava.net/cmzy/archive/2008/09/11/228271.html 

   今天看SpringAPI的时候无意中发现了Spring2.5新增了一个RowMapper的实现类org.springframework.jdbc.core.BeanPropertyRowMapper,但是貌似Spring的refrence里面根本就没提及到。Google了一下……貌似也莫得多少文档。

    Spring API Doc的说明如下:

   RowMapper implementation that converts a row into a new instance of the specified mapped target class. The mapped target class must be a top-level class and it must have a default or no-arg constructor.

   Column values are mapped based on matching the column name as obtained from result set metadata to public setters for the corresponding properties. The names are matched either directly or by transforming a name separating the parts with underscores to the same name using "camel" case.

   Mapping is provided for fields in the target class for many common types, e.g.: String, boolean, Boolean, byte, Byte, short, Short, int, Integer, long, Long, float, Float, double, Double, BigDecimal, java.util.Date, etc.

   To facilitate mapping between columns and fields that don't have matching names, try using column aliases in the SQL statement like "select fname as first_name from customer".

   Please note that this class is designed to provide convenience rather than high performance. For best performance consider using a custom RowMapper.


   也就说,它可以把ResultSet和实体类的字段进行实现自动映射。

   一个具体的例子如下:

   假如有这样一个表,SQL-Server2000的建表脚本如下:

   为此,我们编写一个对应的实体类admin,它是一个标准的javaBean,代码如下:

   以前,在相应的AdminDAO中,我们以前是这么做滴,看起来很麻烦,如果一个表的字段很多的话,就要人命了,我们必须不停的set、get:

   可见,我们必须的手工对ResultSet和Admin进行映射。而现在,我们只是需要这样:

    呵呵,只是一句话就完全搞定了……Sprin会为我们自动映射……显然这样比以前方便多了。我们还可以把它用在其它任何使用RowMapper的场合……毕竟它继承自RowMapper……

    需要注意的是:BeanPropertyRowMapper是根据字段名和实体类中的标准Setter方法进行映射滴。也就是说,我们需要使表中的字段名和实体类的成员变量名称一致。





By:残梦追月
posted on 2008-09-11 09:33 残梦追月 阅读(1755) 评论(4)  编辑  收藏 所属分类: Spring

评论:
# re: 发现了Spring2.5里的一个新东西, BeanPropertyRowMapper类。 2008-09-11 13:18 | super2
还是很生硬  回复  更多评论
  
# re: 发现了Spring2.5里的一个新东西, BeanPropertyRowMapper类。 2008-09-11 18:17 | 残梦追月
@super2
呵呵。我不是翻译滴……只是介绍了哈它的用法……我哪个翻字用错了。  回复  更多评论
  
# re: 发现了Spring2.5里的一个新东西, BeanPropertyRowMapper类。 2008-09-12 10:36 |
这个查询太简单了吧?要是只查某部分字段或复合查询(如count(XX)、sun(XX))该怎么用?还能自动匹配吗?  回复  更多评论
  
# re: 发现了Spring2.5里的一个新东西, BeanPropertyRowMapper类。 2008-09-12 13:40 | 残梦追月
@巫
这个只是个例子嘛……你可以用别名啊……
select Count(*) as n form table  回复  更多评论
  

标题  
姓名  
主页
验证码 *  
内容(请不要发表任何与政治相关的内容)  
  登录  使用高级评论  新用户注册  返回页首  恢复上次提交      
该文被作者在 2008-09-11 18:18 编辑过
 
 

推荐图书:
走出软件作坊》、《悟透JavaScript》、《Head First 设计模式
相关链接:
网站导航: