Re: How to configure development mode so can see changes on-the-fly without restart

2009-03-09 Thread Maarten Bosteels
Hello, I am also using IDEA 8.1 but instead of the jetty:run I start the wicket app with the Start [1] class that is part of the quickstart archetype. Not sure it's necessary but in my Application class, I added these lines for automatic picking up changes to the html:

Re: How to configure development mode so can see changes on-the-fly without restart

2009-03-09 Thread Stefan Malmesjö
You can read up here http://docs.codehaus.org/display/JETTY/Maven+Jetty+Plugin on scanIntervalSeconds and reload=automatic. It works for me, but I usually get an exception after 30 or so reloads. But I figure it's better than nothing :) /Stefan Jason Rosenberg wrote: Hello, I'm new to

Re: How to configure development mode so can see changes on-the-fly without restart

2009-03-09 Thread uwe janner
for class reloading you can either use wicket with seam (of course activate debug/development mode in both seam and wicket) or javarebel (which now has a wicket plugin). as we migrated from seam with jsf to seam with wicket we are very happy to have this instant change feature for free. cheers,

Re: How to configure development mode so can see changes on-the-fly without restart

2009-03-09 Thread Jason Rosenberg
Thanks Maarten, This worked for me (and I'm still using jetty:run) I'll look into JavaRebel for the class reloading bit Jason Maarten Bosteels wrote: Hello, I am also using IDEA 8.1 but instead of the jetty:run I start the wicket app with the Start [1] class that is part of

Re: How to configure development mode so can see changes on-the-fly without restart

2009-03-09 Thread Jason Rosenberg
Yeah, Unfortunately, I tried using the jetty scanInterval setting, but this caused Jetty to reload the wicket app, and since I'm using Guice to inject configuration params, it doesn't like to re-inject params multiple times Jason Stefan Malmesjö wrote: You can read up here