From: Erik Brakkee Date: Sat, 12 Oct 2013 12:09:09 +0000 (+0200) Subject: UTILS-17 X-Git-Tag: wamblee-utils-0.8~1 X-Git-Url: http://wamblee.org/gitweb/?a=commitdiff_plain;h=ec59f519fe8286b7fadad2b7712f6b32f2b31939;hp=ec59f519fe8286b7fadad2b7712f6b32f2b31939;p=utils UTILS-17 CDI integration in wicket can lead to null pointer exceptions after deserialization The InjectIonBehavior does injection after deserialization only when beforeRender is called, but beforeRender() is not always the first call done after deserialization. Therefore, InjectionBehavior should do injection straight after deserialization (if needed). Injection is now done at deserialization. ---