gpt4 book ai didi

jsf - p :commandButton don't redirect when ExternalContext#redirect() is called

转载 作者:行者123 更新时间:2023-12-04 21:22:59 26 4
gpt4 key购买 nike

这是一个可以抛出异常的示例按钮:

<h:commandButton value="save" update=":formTable:tableData">
<f:setPropertyActionListener value="BTN_ONE"
target="#{tamplateTableBean.buttonSelected}" />
</h:commandButton>

在我的 ExceptionHandler我有:

FacesContext.getCurrentInstance().getExternalContext().redirect("error.xhtml");

当我使用 <h:commandButton> 时(如上例)并发生异常,然后执行重定向并显示错误页面。当我使用 <p:commandButton> ,那么重定向就不会发生(即使行 redirect("error.xhtml") 被执行)并且它将停留在同一页面上,就好像什么都没发生一样。我的 ExceptionHandler 中捕获了异常, 但不显示 JSF 错误页面。

这是怎么引起的,我该如何解决?

最佳答案

如链接 iIn BalusC 评论中所述 - Omnifaces 解决了这个问题。我删除了我的 ExcetionHandler 实现并更改为 Omnifaces -> 在文档中,我导入 omnifaces.jar,添加到 faces-config.xml

<factory>
<exception-handler-factory>
org.omnifaces.exceptionhandler.FullAjaxExceptionHandlerFactory
</exception-handler-factory>
</factory>

和 web.xml

 <error-page> 
<error-code>500</error-code>
<location>/faces/restricted/error.xhtml</location>
</error-page>

现在我在 Ajax 请求中捕获异常并重定向到错误页面。(提示:error.xhtml 是 facelet 文件,注意输入正确的路径)

关于jsf - p :commandButton don't redirect when ExternalContext#redirect() is called,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16463375/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com