1

目前我正在尝试以下 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} ....

有任何想法吗?

4

1 回答 1

0

重写 API 并没有为这个问题带来原生解决方案。


开球示例

.addRule()
.when(/* your condition */)
.perform(new HttpOperation() {
    @Override
    public void performHttp(HttpServletRewrite httpServletRewrite, EvaluationContext evaluationContext) {
        // this is the default wrapper
        HttpRewriteWrappedRequest request = ((HttpRewriteWrappedRequest) httpServletRewrite.getRequest());

        // get the uri (example: '/index/p1/p2')
        String uri = httpServletRewrite.getRequest().getRequestURI();

        // split by slash
        String[] split = uri.split("/");

        // this is example specific
        // split value 0 is empty and split value 1 is the page (e.g. 'index')
        // for every folder increment the index
        // for '/pages/index' the start index should 3
        for (int i = 2; i < split.length; i++) {
            String s = split[i];

            // the request parameter is by default an immutable map
            // but this returns a modifiable
            request.getModifiableParameters().put("prefix" + (i - 1), new String[]{s});
        }
    }
});

解释

唯一重要的部分是HttpOperation. 默认情况下,ServletRequest包裹在HttpRewriteWrappedRequest.

初始化后默认HttpServletRequest不允许更改参数。该方法getParameterMap()返回一个不可变的映射。

getParameterMap()ofHttpRewriteWrappedRequest也返回一个不可变的映射。但getModifiableMap()显然返回一个可修改的地图。

其余的应该是不言自明的。


也可以看看

Ocpsoft:如何修改参数

使用 servlet 过滤器修改请求参数

于 2020-06-10T09:57:27.990 回答