Return-Path: Delivered-To: apmail-ibatis-user-java-archive@www.apache.org Received: (qmail 12059 invoked from network); 29 Oct 2005 18:10:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 29 Oct 2005 18:10:32 -0000 Received: (qmail 1741 invoked by uid 500); 29 Oct 2005 18:10:31 -0000 Delivered-To: apmail-ibatis-user-java-archive@ibatis.apache.org Received: (qmail 1724 invoked by uid 500); 29 Oct 2005 18:10:30 -0000 Mailing-List: contact user-java-help@ibatis.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user-java@ibatis.apache.org Delivered-To: mailing list user-java@ibatis.apache.org Received: (qmail 1713 invoked by uid 99); 29 Oct 2005 18:10:30 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 29 Oct 2005 11:10:30 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of amad.fida@gmail.com designates 64.233.162.199 as permitted sender) Received: from [64.233.162.199] (HELO zproxy.gmail.com) (64.233.162.199) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 29 Oct 2005 11:10:26 -0700 Received: by zproxy.gmail.com with SMTP id 12so574206nzp for ; Sat, 29 Oct 2005 11:10:08 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:from:to:subject:date:mime-version:content-type:content-transfer-encoding:x-mailer:x-mimeole:thread-index:in-reply-to:message-id; b=SxJSO6X6rXLRgA1gkAInxv9ya95+7jl3l+DsidMFres9E9cOrcAPq9ixR9x3vUr+d3PMxzMZ+fnyZ2hvyWc1Jj2Gpjqpb/H0sbsvfVfxWoI1uase+eXzwuuBLQHiOogghJm/NrMzwxOb0xqxKOaAFb/Ya4a+43SEZiMWcCOJbWk= Received: by 10.36.222.42 with SMTP id u42mr1120258nzg; Sat, 29 Oct 2005 11:10:08 -0700 (PDT) Received: from ltamad ( [24.24.190.144]) by mx.gmail.com with ESMTP id c12sm1360243nzc.2005.10.29.11.10.05; Sat, 29 Oct 2005 11:10:08 -0700 (PDT) From: "Amad Fida" To: Subject: Collection properties in resultMap Date: Sat, 29 Oct 2005 11:08:48 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.5510 x-mimeole: Produced By Microsoft MimeOLE V6.00.3790.1830 Thread-Index: AcXcq2RJINVTjY++SzKIGwwZsPLuywACFNIA In-reply-to: <20051029170806.2265.qmail@web32601.mail.mud.yahoo.com> Message-ID: <4363bb00.6591561c.600a.4e5b@mx.gmail.com> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi all, I have a table which has columns like CutomField1, CustomField2, etc Now I have a class Class User { private Collection customFields; ..... } How would I map individual columns to single collection property? Is something like this possible? .... Thanks Amad