Re: [Stripes-users] stripes and database interaction

2009-01-06 Thread Simon
Hi MS, On Fri, Jan 2, 2009 at 4:31 AM, M S 102...@gmail.com wrote: I was hoping that stripes would somehow handle the database connections for me (including pooling, configuration, etc.), but that doesn't seem to be the case. Using something like hibernate is overkill for such a small

[Stripes-users] Binding to child object without prefix

2009-01-06 Thread Simon
Hi ... Apologies if this has been asked before. My problem: I really like how stripes will bind deeply to objects that are attributes of my action bean. However in some cases it makes the parameter string very long or verbose if the property I'm binding to has a long name. Eg: class Foo

Re: [Stripes-users] Binding to child object without prefix

2009-01-06 Thread Oscar Westra van Holthe - Kind
On 07-01-2009 at 07:33, Simon wrote: My problem: I really like how stripes will bind deeply to objects that are attributes of my action bean. However in some cases it makes the parameter string very long or verbose if the property I'm binding to has a long name. Eg: class Foo implements

Re: [Stripes-users] Binding to child object without prefix

2009-01-06 Thread Tim Fennell
I sorta agree with Oscar, except that I think I'd implement it as a Stripes Interceptor that wraps around ActionBeanResolution. That way the Interceptor would know the ActionBean being targeting and could use that information to adjust the request parameters. -t On Jan 6, 2009, at 3:59

Re: [Stripes-users] Binding to child object without prefix

2009-01-06 Thread Oscar Westra van Holthe - Kind
On 06-01-2009 at 16:05, Tim Fennell wrote: I sorta agree with Oscar, except that I think I'd implement it as a Stripes Interceptor that wraps around ActionBeanResolution. That way the Interceptor would know the ActionBean being targeting and could use that information to adjust the