> Matt's says
>
> 1. regarding Bookmarking and URLs, "Wicket allows
> pages/URLs to be mounted". What does this "mounted"
> mean? Can somebody provide an example?


you can mount a (bookmarkable) page on an url of your choice like:

application.mount("/login", LoginPage.class)

then the login page will be shown when somebody does http://host/login


>
> 2. regarding Post and Redirect, Wicket has "flash"
> support. What is "flash" support?


If you have error or info messages that these are  shown over multiply
requests
So if you do a redirect you dont loose those messages.

Wicket just cleans the messages when they are rendered once (when ever that
happens)


>
> 3. regarding Page Decoration, SiteMesh is not
> supported or recommended for use with Wicket. This
> worries me since I am Sitemesh fan. Can Sitemesh be
> FULLY integrated with Wicket? Any Wicket user did
> this?
>

I dont think sitemesh will be a great match for wicket at an time
It is really build for different  frameworks.
Wicket has for that build in support with Markup Inheritance and Panels

I guess if you are in mixed world (wicket and a jsp x framework) you could
try to mix that with sitemesh

johan

Reply via email to