You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user-java@ibatis.apache.org by Zoran Avtarovski <zo...@sparecreative.com> on 2006/03/28 02:45:17 UTC

OT: Extending resultsets

I've been working on a new project for the last month or so and I'm come
across a few things that are starting to irk me and I want to know if it is
possible to do the following and if not what's involved in implementing.

Is it possible to to extend resultMaps much like Tiles allows you to extend
a base layout. Eg

<resultMap class="CategoryForm" id="Category-result" >

<resultMap extends="Category-result" id="Category-result-detail" >

What I'm finding in our apps is that we often have a base resultMap which
returns the core data for an object and then we have detailed
resultMapswhich include core data plus "detailed" data which includes data
from n+1 selects and other selects. It would be nice not to have to
duplicate the core result mappings.

Zoran