You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ibatis.apache.org by "Jeff Butler (JIRA)" <ib...@incubator.apache.org> on 2006/06/09 18:42:33 UTC

[jira] Closed: (IBATIS-225) Reuse resultmap for single bean property

     [ http://issues.apache.org/jira/browse/IBATIS-225?page=all ]
     
Jeff Butler closed IBATIS-225:
------------------------------

    Fix Version: 2.2.0
     Resolution: Fixed

Fixed and documented in SVN.

> Reuse resultmap for single bean property
> ----------------------------------------
>
>          Key: IBATIS-225
>          URL: http://issues.apache.org/jira/browse/IBATIS-225
>      Project: iBatis for Java
>         Type: Improvement

>   Components: SQL Maps
>     Reporter: Huy Do
>     Assignee: Jeff Butler
>      Fix For: 2.2.0

>
> Allow the following reuse of result maps
> <resultMap id="Pick" class="package.domain.Pick">
>   <result property="pickId" column="pick_id"/>
>    <result property="sale" resultMap="Sale"/>
> </resultMap>
> <resultMap id="Sale" class="Sale">
>    <result column="sale_id" property="saleId"/>
> </resultMap>
> with beans
> class Pick {
>       String pickId;
>       Sale sale;
> }
> class Sale {
>       String saleId;
> }
> At the moment <result property="sale" resultMap="Sale"/> can only be reused if property "sale" is a collection.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira