Hi all

Searching the net I found various ways to support RESTful URLs in Wicket,
including the MixedParamUrlCodingStrategy. I am just curious if there is an
easier way, as it looks cumbersome.

I like the method mountPage (example in Scala below), but it does not
generate RESTful URLs, the URL looks like this: guide//step/?3 - the
guideId and stepNo is missing.

What is the recommended way of generating REST URLs in Wicket 6.3?

mountPage("/guide/${guideId}/step/${stepNo}", classOf[GuidePage])

Reply via email to