JSF:以 POST 而非 GET 方式重定向到 url

发布于 2024-10-26 04:32:33 字数 202 浏览 1 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

爱冒险 2024-11-02 04:32:33

这对于 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.

苍白女子 2024-11-02 04:32:33

是的,您可以通过将支持 Bean 重定向到某个包含所有隐藏值的临时页面并使用 form.submit(); 示例:

支持 Bean:

public String submitValue() {
        return "temp";
}

temporary.jsf来做到这一点

<h:form id="JsfTemp" prependId="false">
  <h:outputText id="welcomeOutput" value="Test Sending form"/>
  <h:inputHidden id="Merchant_Number" value="#{paymentBean.paymentDetails.merchantNumber}" />
</h:form>
</body>

<script type="text/javascript">
  function submitPage() {
    document.getElementById("JsfTemp").action="http://localhost:9090/TestClient/HelloWorld";
    document.getElementById("JsfTemp").submit();
  }
  submitPage();
</script>

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:

public String submitValue() {
        return "temp";
}

temporary.jsf

<h:form id="JsfTemp" prependId="false">
  <h:outputText id="welcomeOutput" value="Test Sending form"/>
  <h:inputHidden id="Merchant_Number" value="#{paymentBean.paymentDetails.merchantNumber}" />
</h:form>
</body>

<script type="text/javascript">
  function submitPage() {
    document.getElementById("JsfTemp").action="http://localhost:9090/TestClient/HelloWorld";
    document.getElementById("JsfTemp").submit();
  }
  submitPage();
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文