リリースはありません
Bookmarkableなリンクのパラメータに「/」が入る場合下記のようにするとリンクをクリックした時点で404が発生します。
この場合URLEncoderを使用してエンコーディングを行い、パラメータを受け取るクラス側(今回だとParameterTestPageToクラス)にてパラメータを取得する際にデコーディングを行うことで問題を回避できます。
- public class ParameterTestPageFrom extends WebPage {
- public ParameterTestPageFrom() throws UnsupportedEncodingException{
- final PageParameters param = new PageParameters();
- param.add("url", URLEncoder.encode("http://example.jp/", "UTF-8"));
- add(new BookmarkablePageLink("next",ParameterTestPageTo.class, param));
- }
- }