在几秒钟后重定向到另一个页面jsf2 primefaces

时间:2012-08-15 11:19:16

标签: java-ee jsf-2 primefaces

我有一个允许编辑用户的页面,当用户点击“编辑”按钮时,我将他重定向到另一个页面几秒钟,我想再次重定向他,但这次是一次又一次的另一个页面, 我尝试使用<p:poll>

但它不起作用 这是我的代码:

 <?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:ui="http://java.sun.com/jsf/facelets"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:p="http://primefaces.org/ui">

    <body>

        <ui:composition template="./template_admin.xhtml">

            <ui:define name="content">
                <h:form id="form">

                            <p:panel id="panel" header="Confirmation" style="width: 400px;margin: auto;" >

                                <h:panelGrid columns="1">
                                    <h:outputText value="votre edition est sauvegardé avec succée"/>
                                    <h:outputText value="vous serez rediriger vers la page de la liste des utilisateurs dans quelques instants" />
                                    <p:poll interval="3" action="utilsateurs" />
                                </h:panelGrid>


                            </p:panel>

                        </h:form>

            </ui:define>

        </ui:composition>

    </body>
</html>
你知道吗? 提前谢谢你

1 个答案:

答案 0 :(得分:1)

您不需要民意调查。你可以用普通的HTML做到这一点。将此标记添加到页面的头部

<meta http-equiv="refresh" content="5;URL=otherUrl.jsf" />

这将在5秒后重定向到“otherUrl.jsf”。由于您使用的是模板,因此您可以在标题中添加ui:insert,这样就可以将元数据从模板客户端插入到标题中。