Re: problme learning t5+spring+hibernate

2010-11-29 Thread onj888-tapestry
gt;>>> 2.5.6 you should have no problem using T5.1 or T5.2. >>>> >>>> The only difference if you use a ContextLoaderListener to load Spring is >>>> that you will not be able to inject Tapestry services inside Spring >> beans. >>>&g

Re: problme learning t5+spring+hibernate

2010-11-28 Thread Jonathan Barker
ilter instead regular > >> TapestryFilter in your web.xml file. > >> > >> see http://tapestry.apache.org/spring.html > >> > >> > >> 2010/11/28 Roy Chan > >> > >> hi list, > >>> I'm new to tapestry 5, so I follow tutorial

Re: problme learning t5+spring+hibernate

2010-11-28 Thread onj888-tapestry
regular >> TapestryFilter in your web.xml file. >> >> see http://tapestry.apache.org/spring.html >> >> >> 2010/11/28 Roy Chan >> >> hi list, >>> I'm new to tapestry 5, so I follow tutorial from wiki to learn >>> t5+spring+hiberna

Re: problme learning t5+spring+hibernate

2010-11-28 Thread Christophe Cordenier
//tapestry.apache.org/spring.html > > > 2010/11/28 Roy Chan > > hi list, >> >> I'm new to tapestry 5, so I follow tutorial from wiki to learn >> t5+spring+hibernate. >> < >> http://wiki.apache.org/tapestry/Tapstry5First_project_with_Tapestry5,_

Re: problme learning t5+spring+hibernate

2010-11-28 Thread Christophe Cordenier
declared TapestrySpringFilter instead regular TapestryFilter in your web.xml file. see http://tapestry.apache.org/spring.html 2010/11/28 Roy Chan > hi list, > > I'm new to tapestry 5, so I follow tutorial from wiki to learn > t5+spring+hibernate. > < > http:

problme learning t5+spring+hibernate

2010-11-28 Thread Roy Chan
hi list, I'm new to tapestry 5, so I follow tutorial from wiki to learn t5+spring+hibernate. <http://wiki.apache.org/tapestry/Tapstry5First_project_with_Tapestry5,_Spring_and_Hibernate> However, I use the t5.2.4, spring 2.5.6 and hibernate 3.3 instead. I had a problem of double co

Re: T5 Spring+Hibernate

2009-01-07 Thread Juan E. Maya
Hi Avi, did u ever manage to do this? I want to be able to use spring+hibernate from tapestry without losing what tapestry-hibernate has to offer. Maybe i am just asking too much? :) On Thu, May 8, 2008 at 11:02 PM, Avi Cherry wrote: > So, T5 integrates nicely with Spring (tapestry-spring) and

T5 Spring+Hibernate

2008-05-08 Thread Avi Cherry
So, T5 integrates nicely with Spring (tapestry-spring) and integrates nicely with Hibernate (tapestry-hibernate). What happens, though, if I want to have Spring configure and handle my hibernate sessions (and transactions) for me, but wish to use tapestry- hibernate's HibernateEntityValueEncod

T5 : Spring/Hibernate - data not updated

2008-03-20 Thread Stephane Decleire
Hi all, In my Tapestry 5 application, i have several services that use Spring to access Hibernate. Those services are declared as transactional in Spring. @Transactional (readOnly = false) public Account signon(String pseudo, Password password) { Account account = accountDao.load(pseudo, pa

Re: T5 / Spring / Hibernate Lazy Loading

2007-10-25 Thread trekmbikes
http://www.nabble.com/T5---Spring---Hibernate-Lazy-Loading-tf4685218.html#a13418423 Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: T5 / Spring / Hibernate Lazy Loading

2007-10-24 Thread lasitha
7;t use it? I thought that Spring > > provided a proxy that didn't have much cost until you actually went to use > > it. > > > > Jonathan > > > >> -Original Message- > >> From: trekmbikes [mailto:[EMAIL PROTECTED] > >> Sent: Wednesda

RE: T5 / Spring / Hibernate Lazy Loading

2007-10-24 Thread trekmbikes
> Jonathan > >> -Original Message- >> From: trekmbikes [mailto:[EMAIL PROTECTED] >> Sent: Wednesday, October 24, 2007 1:50 PM >> To: users@tapestry.apache.org >> Subject: T5 / Spring / Hibernate Lazy Loading >> >> >> I'm bran

Re: T5 / Spring / Hibernate Lazy Loading

2007-10-24 Thread Chris Lewis
Ah - so your issue is you already have Spring managing your Sessions - I understand. Unfortunately I don't use Spring, but I know integration with it is the goal of tapestry-spring. I wish I could be of more help, but I know someone else should be. sincerely, chris trekmbikes wrote: Hi Chris

RE: T5 / Spring / Hibernate Lazy Loading

2007-10-24 Thread Jonathan Barker
2007 1:50 PM > To: users@tapestry.apache.org > Subject: T5 / Spring / Hibernate Lazy Loading > > > I'm brand new to Tapestry. I have a large application that uses Spring to > configure the Hibernate SessionFactory. I have a request interceptor > defined > in Spring so that I

Re: T5 / Spring / Hibernate Lazy Loading

2007-10-24 Thread trekmbikes
nto a >> separate >> file. Plus, I'll have two complete SessionFactory instances when I really >> only needed one. >> d - I tried looking into the dispatcher classes but there's no >> "afterReturn()" method, only dispatch(). So I have no way to close the >> session/connection after the request ret

Re: T5 / Spring / Hibernate Lazy Loading

2007-10-24 Thread Chris Lewis
I'm showing my inexperience with hibernate in web applications here, but tapestry-hibernate provides a thread-safe session-per-request implementation by default (http://tapestry.apache.org/tapestry5/tapestry-hibernate/). Is this not sufficient? trekmbikes wrote: I'm brand new to Tapestry. I

T5 / Spring / Hibernate Lazy Loading

2007-10-24 Thread trekmbikes
g into the dispatcher classes but there's no "afterReturn()" method, only dispatch(). So I have no way to close the session/connection after the request returns. Suggestions would be much appreciated! -- View this message in context: http://www.nabble.com/T5---Spring---Hi