目前我正在尝试以下 JSF - Lib:
https://www.ocpsoft.org/rewrite/examples/
我有以下问题:
我有一个页面:/page.jsf
在我的页面中,我只有一个参数。例如我有: - 参数 1 - 参数 2
String parameter1 = FacesContext.getCurrentInstance().getExternalContext()
.getRequestParameterMap().get("parameter1");
String parameter2 = FacesContext.getCurrentInstance().getExternalContext().getRequestParameterMap()
.get("parameter2");
目前我知道我可以在我的 UrlConfigProvider 类中添加它:
.addRule(Join.path("/page/{parameter1}").to("/portal/mypage.jsf") .withInboundCorrection())
这适用于一个参数。
但是我怎样才能对多个参数执行此操作,所以 URL 是:/page/{parameter1}/{parameter2} ....
有任何想法吗?