Re: t5: DAO and hibernate integration

2008-10-13 Thread Hugo Palma
Why don't you make those "normal java classes" services ? shinkei wrote: Is there another way? I have quite a few DAO's that need to talk with alot normal java classes behind the page. So it seems a bit messy injecting all the DAOs through the page class and then back into the java classes beh

Re: t5: DAO and hibernate integration

2008-10-13 Thread shinkei
Is there another way? I have quite a few DAO's that need to talk with alot normal java classes behind the page. So it seems a bit messy injecting all the DAOs through the page class and then back into the java classes behind it. HugoPalma wrote: > > Just inject it into the page/component/s

Re: t5: DAO and hibernate integration

2008-10-13 Thread Hugo Palma
Just inject it into the page/component/service where the normal java class is being called from and pass the userDAO instance to it. shinkei wrote: How would I use the userDAO in a normal java class (ie. not a page)? Inject won't seem to work unless its a page. Can anyone help? Raul Rosenz

Re: t5: DAO and hibernate integration

2008-10-13 Thread shinkei
How would I use the userDAO in a normal java class (ie. not a page)? Inject won't seem to work unless its a page. Can anyone help? Raul Rosenzvaig wrote: > > Finally I got the most simple solution from Onno > > Just to pass the hibernate session in the constructor and that will do the > tr

Re: t5: DAO and hibernate integration

2008-08-23 Thread Raul Rosenzvaig
Finally I got the most simple solution from Onno Just to pass the hibernate session in the constructor and that will do the trick: import org.hibernate.Session; public class UserDAOImpl implements UserDAO { private Session session; public UserDAOImpl(Session session) { /

Re: t5: DAO and hibernate integration

2008-08-23 Thread Sven Homburg
http://www.chenillekit.org/chenillekit-hibernate/doa_sample.html 2008/8/23 Raul Rosenzvaig <[EMAIL PROTECTED]> > > Does anyone have a working example of Hibernate in DAO service ? > > Much appreciate > > Raul Rosenzvaig > > - > Raul Rosenzvaig > www.limonn.com > -- > View this message in co

Re: t5: DAO and hibernate integration

2008-08-23 Thread Shing Hing Man
I have an example for Tap 5.0.13 and Tapetsry-Hibernate-5.0.13. An online demo and source code are at http://lombok.demon.co.uk/folderTap5/ Shing --- On Sun, 24/8/08, Raul Rosenzvaig <[EMAIL PROTECTED]> wrote: > From: Raul Rosenzvaig <[EMAIL PROTECTED]> > Subject: t5:

t5: DAO and hibernate integration

2008-08-23 Thread Raul Rosenzvaig
Does anyone have a working example of Hibernate in DAO service ? Much appreciate Raul Rosenzvaig - Raul Rosenzvaig www.limonn.com -- View this message in context: http://www.nabble.com/t5%3A-DAO-and-hibernate-integration-tp19124880p19124880.html Sent from the Tapestry - User mailing li