Application Destroy

2009-07-18 Thread Joshua Martin
Is there a method I can override for when the Wicket Web Application is undeployed? -- _ Joshua S. Martin - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands,

Re: Application Destroy

2009-07-18 Thread Adrian Merrall
Joshua, Do you mean destroyed or undeployed? You can override onDestroy() in your Wicket Application class and this will be triggered when your wicket application is stopped as part of being undeployed. But if it were stopped then undeployed I'm not sure how you could be notified of the undeploy

Re: Application Destroy

2009-07-18 Thread Joshua Martin
This is exactly what I needed! I needed to prevent a memory leak related to JXTA and this is the perfect place to perform at manager.stopNetwork(); On Sat, Jul 18, 2009 at 8:19 PM, Adrian Merrallpigeonra...@gmail.com wrote: Joshua, Do you mean destroyed or undeployed? You can override