Re: T5 tapestry-spring: have to interface all HibernateDaoSupport methods

2007-06-25 Thread Bill Holloway
I.e., public class FooDaoImpl extends HibernateTemplate implements FooDao // which extends HibernateOperations { // some custom Foo dao methods. } Perfecto and parsimonious. bill On 6/25/07, Massimo Lusetti <[EMAIL PROTECTED]> wrote: On 6/26/07, Bill Holloway <[EMAIL PROTECTED]>

Re: T5 tapestry-spring: have to interface all HibernateDaoSupport methods

2007-06-25 Thread Bill Holloway
Thank you Massimo! That got it all solved. bill On 6/25/07, Massimo Lusetti <[EMAIL PROTECTED]> wrote: On 6/26/07, Bill Holloway <[EMAIL PROTECTED]> wrote: > I have the following DAO pattern: > > public class FooDaoImpl > extends HibernateDaoSupport > implements FooDao > { >

Re: T5 tapestry-spring: have to interface all HibernateDaoSupport methods

2007-06-25 Thread Ned Jackson Lovely
On Mon, Jun 25, 2007 at 06:02:16PM -0500, Bill Holloway wrote: > I have the following DAO pattern: > > public class FooDaoImpl > extends HibernateDaoSupport > implements FooDao > { > // some custom Foo dao methods. > } > > However, tapestry-ioc spring bean injection injects via inte

Re: T5 tapestry-spring: have to interface all HibernateDaoSupport methods

2007-06-25 Thread Massimo Lusetti
On 6/26/07, Bill Holloway <[EMAIL PROTECTED]> wrote: I have the following DAO pattern: public class FooDaoImpl extends HibernateDaoSupport implements FooDao { // some custom Foo dao methods. } However, tapestry-ioc spring bean injection injects via interface. So, none of the

T5 tapestry-spring: have to interface all HibernateDaoSupport methods

2007-06-25 Thread Bill Holloway
I have the following DAO pattern: public class FooDaoImpl extends HibernateDaoSupport implements FooDao { // some custom Foo dao methods. } However, tapestry-ioc spring bean injection injects via interface. So, none of the HibernateDaoSupport or HibernateTemplate methods like s