Re: Bes practice for deployment to avoid ClassNotFoundException

2014-11-23 Thread Thorsten Schöning
Guten Tag Martin Grigorov, am Sonntag, 23. November 2014 um 12:20 schrieben Sie: > 4) you start Tomcat and it tries to load the persisted sessions > 4.1) Since Wicket stores its data > as org.apache.wicket.pageStore.DefaultPageStore.SerializedPage (a triple of > pageId (int) / sessionId (String) /

Re: Bes practice for deployment to avoid ClassNotFoundException

2014-11-23 Thread Martin Grigorov
Hallo Thorsten, On Sun, Nov 23, 2014 at 1:02 PM, Thorsten Schöning wrote: > Guten Tag Martin Grigorov, > am Sonntag, 23. November 2014 um 11:22 schrieben Sie: > > > You are experiencing Tomcat Session Persistence - > > > http://tomcat.apache.org/tomcat-7.0-doc/config/manager.html#Persistence_Acr

Re: Bes practice for deployment to avoid ClassNotFoundException

2014-11-23 Thread Thorsten Schöning
Guten Tag Martin Grigorov, am Sonntag, 23. November 2014 um 11:22 schrieben Sie: > You are experiencing Tomcat Session Persistence - > http://tomcat.apache.org/tomcat-7.0-doc/config/manager.html#Persistence_Across_Restarts > Just disable it for development to avoid such kind of problems. But the

Re: Bes practice for deployment to avoid ClassNotFoundException

2014-11-23 Thread Martin Grigorov
Hi, You are experiencing Tomcat Session Persistence - http://tomcat.apache.org/tomcat-7.0-doc/config/manager.html#Persistence_Across_Restarts Just disable it for development to avoid such kind of problems. I'd also recommend to use Jetty for development if possible. It is much faster to restart.

Bes practice for deployment to avoid ClassNotFoundException

2014-11-21 Thread Thorsten Schöning
Hi all, I'm new to wicket and just recently started to use it for a new web app for one of our projects. Today I came across a similar issue like described in [1], a ClassNotFoundException during deserialization of a page. The interesting part about this in my mind is, that the mentioned missing c