I've started to work with Wicket. When I make changes to the HTML templates, that becomes visible right away.
But when I make changes to the code, I need to restart Jetty. I'm running in DEVELOPMENT
mode (at least that's what the big fat warning in the log says) and I have installed the ReloadingWicketFilter
as per this question: Wicket - runtime class reloading
My guess is that this behavior is because I make all changes in the constructor of my pages and Wicket doesn't create a new page when I reload.
I've browsed the Wicket examples but there is no example which shows how to build a Wicket page without adding all components in the constructor or how to tell Wicket to create a new page for every request or how to tell Wicket to create a new Page.