[Wicket-user] My take on Spring integration

2005-10-22 Thread Stefan Arentz
I've been reading the Spring/Wicket integration threads on the mailing lists and looked at the code that is available but I was not entirily happy with the things I saw. So, stubborn as I am, I decided to forget everything and do some things 'my own way' instead :-) First, I embedded Jetty

RE: [Wicket-user] My take on Spring integration

2005-10-22 Thread Igor Vaynberg
Where/how is the mHelloWorldService injeted into the page? -Igor -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Stefan Arentz Sent: Saturday, October 22, 2005 9:27 AM To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] My take on

Re: [Wicket-user] My take on Spring integration

2005-10-22 Thread Stefan Arentz
On Oct 22, 2005, at 6:37 PM, Igor Vaynberg wrote: Where/how is the mHelloWorldService injeted into the page? -Igor It is not injected in the page. Only in the WebApplication. I haven't figured that out yet, but I'm also not sure if you want to inject stuff in pages. I will find out when I

Re: [Wicket-user] My take on Spring integration

2005-10-22 Thread Andrew Berman
WebPages are serializable since they are stored in the session. You first need to declare the private service member as transient in your WebPage since you do not want to store the service in session and since it is not serializable. But if you do this, your injection will not work the way you

RE: [Wicket-user] My take on Spring integration

2005-10-22 Thread Igor Vaynberg
But then, aside from the embedded jetty, this is no different from the Page-level integration section of http://www.wicket-wiki.org.uk/wiki/index.php/SpringIntegration Am I totally missing something? -Igor -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On