Re: Managing database connection?

2008-08-04 Thread Martin Makundi
nse); >} > > > I hope that this helps. > > Joe C > > -Original Message- > From: Martin Makundi [mailto:[EMAIL PROTECTED] > Sent: Sunday, August 03, 2008 9:07 AM > To: users@wicket.apache.org > Subject: Re: Managing database connection? >

RE: Managing database connection?

2008-08-04 Thread JCelano
s helps. Joe C -Original Message- From: Martin Makundi [mailto:[EMAIL PROTECTED] Sent: Sunday, August 03, 2008 9:07 AM To: users@wicket.apache.org Subject: Re: Managing database connection? > how is a custom request cycle heavy weight? It isn't-it's a common practise.

Re: Managing database connection?

2008-08-03 Thread Martin Makundi
> how is a custom request cycle heavy weight? It isn't–it's a common practise. Ok :) I just had a look at DataBinder.net, that was more heavy-weght. Is there any short introduction available on how to implement onEndRequest() -hook, or is the best reference to just have a look at the respective c

Re: Managing database connection?

2008-08-03 Thread Martijn Dashorst
how is a custom request cycle heavy weight? It isn't–it's a common practise. Martijn On Sun, Aug 3, 2008 at 2:28 PM, Martin Makundi <[EMAIL PROTECTED]> wrote: > Anything lighter? Basically I just need to hook the onEndRequest() > event. I assume it would be bad practice to extend the wicket servl

Re: Managing database connection?

2008-08-03 Thread Martin Makundi
Anything lighter? Basically I just need to hook the onEndRequest() event. I assume it would be bad practice to extend the wicket servlet, though .. ** Martin 2008/8/3 Martijn Dashorst <[EMAIL PROTECTED]>: > Create a custom request cycle that opens a Session in onBeginRequest > and closes it in on

Re: Managing database connection?

2008-08-03 Thread Martijn Dashorst
Create a custom request cycle that opens a Session in onBeginRequest and closes it in onEndRequest. Perhaps DataBinder.net has one readily available. Martijn On Sun, Aug 3, 2008 at 1:11 PM, Martin Makundi <[EMAIL PROTECTED]> wrote: > I am using Hibernate/JPA without Spring. Is there a suitable >

Re: Managing database connection?

2008-08-03 Thread Martin Makundi
I am using Hibernate/JPA without Spring. Is there a suitable interceptor class in Wicket that could be used? ** Martin 2008/8/3 Martijn Dashorst <[EMAIL PROTECTED]>: > Most folks use open session in view filter from Spring (in combination > with Hibernate). I think they have a similar filter for

Re: Managing database connection?

2008-08-03 Thread Martijn Dashorst
Most folks use open session in view filter from Spring (in combination with Hibernate). I think they have a similar filter for JDBC template (which is highly recommended for normal JDBC actions IMO). Martijn On Sun, Aug 3, 2008 at 12:45 PM, Martin Makundi <[EMAIL PROTECTED]> wrote: > Hi! > > What

Managing database connection?

2008-08-03 Thread Martin Makundi
Hi! What is the best place to open/close a data connection in Wicket? I prefer lazy open, but where is the best place to perform the connection/entitymanager.close? Override servlet request? Filter? ** Martin - To unsubscribe,