Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • add more stateless components (stateless versions of existing components)
  • adopt Ajax stateless behaviors (allow stateless ajax callbacks)..behavior listeners)
  • ...

In Wicket 6, any behavior implementing IBehaviorListener becomes stateful. This includes all subclasses of AbstractAjaxBehavior. Overriding this behavior by making getStatelessHint() return true for an ajax behavior with a listener interface is tricky. The listener's url cannot be assumed to be stable unless the number and order of behaviors added to components does not change between the page creation and the ajax request.

Implement JAX-RS on top of Wicket IResource

...