Re: iBatis 3.0 minimal complete example

2010-02-10 Thread Rick R
On Tue, Feb 2, 2010 at 9:27 AM, Clinton Begin clinton.be...@gmail.comwrote: I agree, that it's long overdue. Perhaps it's time for Jpetstore 6. And without leveraging Guice or Spring :)

Re: iBatis 3.0 minimal complete example

2010-02-10 Thread Larry Meadors
On Wed, Feb 10, 2010 at 2:21 PM, Rick R ric...@gmail.com wrote: And without leveraging Guice or Spring :) Rick, you pansy. ;-) - To unsubscribe, e-mail: user-java-unsubscr...@ibatis.apache.org For additional commands, e-mail:

Re: iBatis 3.0 minimal complete example

2010-02-10 Thread Nathan Maves
how about we leave out the whole J2EE stack and anything that goes with it come on rick people want to see a nice clean example of a full stack. from the front end (stripes gets my vote) to IB3 on the back end as well as anything in between. we have covered this topic before and would

Re: iBatis 3.0 minimal complete example

2010-02-10 Thread Ed Stafford
Hi gents, I have a fair bit of time on my hands if you'd like some help. I'd second using Stripes and maybe Spring if only because the authn/authz is pretty nice to use. Cheers, -Ed On 10 February 2010 21:54, Nathan Maves nathan.ma...@gmail.com wrote: how about we leave out the whole J2EE

Re: iBatis 3.0 minimal complete example

2010-02-10 Thread Clinton Begin
I'm going to implement JPetStore 6 using only iBATIS and byte[]. Clinton On Wed, Feb 10, 2010 at 2:54 PM, Nathan Maves nathan.ma...@gmail.comwrote: how about we leave out the whole J2EE stack and anything that goes with it come on rick people want to see a nice clean example of a full

Re: iBatis 3.0 minimal complete example

2010-02-10 Thread Clinton Begin
Anyone and everyone is welcome (and encouraged) to create a JPetStore implementation with iBATIS using whichever framework they like. Cheers, Clinton On Wed, Feb 10, 2010 at 3:10 PM, Ed Stafford walter.staff...@carbonsixty.co.uk wrote: Hi gents, I have a fair bit of time on my hands if

Re: iBatis 3.0 minimal complete example

2010-02-10 Thread Zoran Avtarovski
To be honest I think the choice of front end matters little. The key aspect is the data layer - IB3 and any dependency injection used. I think one example using spring and another using Guice is more than enough. Z. how about we leave out the whole J2EE stack and anything that goes with

Re: iBatis 3.0 minimal complete example

2010-02-10 Thread Rick R
On Wed, Feb 10, 2010 at 11:18 PM, Zoran Avtarovski zo...@sparecreative.com wrote: To be honest I think the choice of front end matters little. The key aspect is the data layer - IB3 and any dependency injection used. I think one example using spring and another using Guice is more than

Re: iBatis 3.0 minimal complete example

2010-02-10 Thread Larry Meadors
On Wed, Feb 10, 2010 at 6:21 PM, Clinton Begin clinton.be...@gmail.com wrote: Anyone and everyone is welcome (and encouraged) to create a JPetStore implementation with iBATIS using whichever framework they like. Rails it is. ;-) Larry

Re: java.util.UUID to postgres uuid column

2010-02-10 Thread Vikram Subbarao
With this approach i tried this in a query - select id=findById parameterClass=java.util.UUID resultMap=fullResult cacheModel=cache SELECT users.* FROM users WHERE id = #id# /select When i call this query as -

RE: java.util.UUID to postgres uuid column

2010-02-10 Thread Niels Beekman
Try #value#, this will use your parameter object directly. Using #id# tries to obtain the id property from it. From: Vikram Subbarao [mailto:vikra...@directi.com] Sent: Thursday, February 11, 2010 7:50 AM To: user-java@ibatis.apache.org Subject: Re: