about serialVersionUID in all components

2010-05-08 Thread Joe Fawzy
Hi all what are the side effects of setting serialVersionUID on all page classes and components private static final long serialVersionUID = 1L; i am developing an application which will be deployed on appengine appengine handle sessions by storing them in the memcache and data store as there

Re: about serialVersionUID in all components

2010-05-08 Thread Martin Voigt
We're doing exactly that all the time on our wicket/GAE apps and haven't run into problems. Only thing we had to change was: static references to components and ajax don't mix well, but one shouldn't do this anyway. regards On 8 May 2010 13:12, Joe Fawzy joewic...@gmail.com wrote: Hi all what