Return-Path: Delivered-To: apmail-ibatis-user-java-archive@www.apache.org Received: (qmail 35281 invoked from network); 28 Aug 2008 05:13:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 28 Aug 2008 05:13:16 -0000 Received: (qmail 36803 invoked by uid 500); 28 Aug 2008 05:13:08 -0000 Delivered-To: apmail-ibatis-user-java-archive@ibatis.apache.org Received: (qmail 36786 invoked by uid 500); 28 Aug 2008 05:13:08 -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 36775 invoked by uid 99); 28 Aug 2008 05:13:08 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 27 Aug 2008 22:13:08 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [216.252.111.124] (HELO web57111.mail.re3.yahoo.com) (216.252.111.124) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 28 Aug 2008 05:12:10 +0000 Received: (qmail 15200 invoked by uid 60001); 28 Aug 2008 05:11:39 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type:Message-ID; b=6vNBQ5nkQH7yyrYmQPw/6jBLP0th0sPK8gMPqtoOB6CR8PbAkKIX7SIlRXZ8DCDGzGbv/U4HAuwMbD+xXsqCDFEULFwjrnlroR7/BimI4ZzLbEMZZbkjP9Ecy5N5lrHV+7DU6aiPfuPP4BTse+0dpIHCMRnpDW7TH8LQUYkLjA8=; X-YMail-OSG: 3lLIzAgVM1npNh6J7knFBC2MBuKvpVgLnXL9hVqcRO3fyl1G7TTDXK.J.2JRUemHUR2j7BD3yp.o8btOg.ak7xRdnuEG.4uUEso1R3LipxaBDNEiE_Al7lJgAnYeOorZNA-- Received: from [71.204.171.136] by web57111.mail.re3.yahoo.com via HTTP; Wed, 27 Aug 2008 22:11:39 PDT X-Mailer: YahooMailRC/1096.28 YahooMailWebService/0.7.218.2 Date: Wed, 27 Aug 2008 22:11:39 -0700 (PDT) From: Ed Murphy Subject: Are iBATIS pojos instrumented? To: user-java@ibatis.apache.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Message-ID: <775715.1161.qm@web57111.mail.re3.yahoo.com> X-Virus-Checked: Checked by ClamAV on apache.org I'm doing a Web 2.0 project where I'll be remoting the objects, probably using GWT RCP or Adobe AMF. I've looked at Hibernate, but it's proxy scheme enhances the pojo for lazy retrieval. That means I'm not getting the object I expect at the client end, so serialization fails. I also like the iBATIS meta data better. I just want to get objects and lists of objects from the db in a straightforward manner. I'll leave lazy loading or other optimizations to the client. In effect, I'll have a DAO on the client to handle this kind of optimization. So, with that context in place, does iBATIS hand me the pojo I expect, or has it been instrumented before I get it? Thanks much. ----------------- Ed Murphy