Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

  • you (probably) can't use redirections, since wicket will redirect to it's own page. If so, override beforeCallComponent in your page:

    Panel Wiki Markup public void beforeCallComponent(Component component, RequestListenerInterface listener) { setRedirect(false); }
  • Because you're using include/forward, the default ServletWebRequest.getPath method will return null. Therefore, you need a specially created one:

in your Application class, override newWebRequest:

...

...

here are the needed implementations:

...

Partial migration with wicketstuff-jee-web

...