JSF:以 POST 而非 GET 方式重定向到 url
我有一个 JSF 页面,通过 context.getExternalContext().redirect(url);
进行重定向,其中 url 是 sth。就像 login.jsf?token=foobar
我现在想要的是通过 POST 而不是通过 GET 请求发送令牌。这样它就不会出现在 url 中,这可以用 JSF 实现吗?
I have an JSF page that redirects via context.getExternalContext().redirect(url);
where the url is sth. like login.jsf?token=foobar
What I want now is to send the token via POST not via GET request. So that it doesn´t show up in the url, is this possible with JSF?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这对于 HTTP 来说是不可能的,对于 JSF 来说也是不可能的。然而,有多种方法可以实现该要求。
将其放入会话范围内。在重定向页面后面的 bean 中,读取它并将其从会话范围中删除。或者,当您使用 JSF 2.0 时,请使用 flash 范围。
转发到包含指向所需 URL 的 POST 表单的页面,将令牌作为隐藏输入值,并包含一些在页面加载时执行
form.submit()
的 JS 代码。It's not possible with HTTP, so also not with JSF. There are however several ways to achieve the requirement.
Put it in the session scope. In the bean behind the redirected page, read and remove it from the session scope. Or when you're using JSF 2.0, use the flash scope.
Forward to a page containing a POST form pointing to the desired URL, having the token as hidden input value and include some JS code which does
form.submit()
on page load.是的,您可以通过将支持 Bean 重定向到某个包含所有隐藏值的临时页面并使用
form.submit();
示例:支持 Bean:
temporary.jsf来做到这一点
Yes you can do this by redirecting your backing bean to some temporary page which contain all hidden values and use
form.submit();
Example:Backing Bean:
temporary.jsf