10

我有一个基本的流程示例工作:

src/main/webapp
|
|- index.xhtml
|- flow1
   |- flow1-flow.xml
   |- flow1.xhtml

index.xhtml 有一个简单的表单,它通过一个参数进入流程:

<h:form>
    Click to enter flow1
    <h:commandButton action="flow1" value="Flow 1">
        <f:param name="testInput" value="hi there"/>
    </h:commandButton>
</h:form>

flow1.xhtml 显示参数并让您在流范围内输入值:

<h:form>
    Hi this is page 1.
    <h:inputText label="Enter something:" value="#{flowScope.testOutput}"/><br/>
    Request parameter: #{param['testInput']}<br/>
    <h:commandButton action="returnFromFlow1"/>
</h:form>

flow1-flow.xml 只是将返回节点定义为“returnFromFlow1”并将其设置为 /index.xhtml。

这似乎奏效了。我想在进入流程时实现 post-redirect-get,以便浏览器地址栏与视图保持同步。所以我自然而然地尝试了 action="flow1?faces-redirect=true"。此更改会阻止流程执行。单击按钮时,它只是重新加载 index.xhtml。

然后我尝试了 action="flow1/flow1.xhtml?faces-redirect=true"。这会按预期加载页面并重定向,但流程未初始化。当我在流程中提交表单时,我收到有关 flowScope 解析为 null 的错误。

做了一些研究,我发现了一个技巧来设置“to-flow-document-id”来强制它初始化流。所以我添加到我的命令按钮。没变。

关于如何做到这一点的任何想法?

4

3 回答 3

1

如果唯一的要求是浏览器地址栏与视图保持同步,您可以简单地使用<h:button而不是<h:commandButton. 这是有效的,因为<h:button使用 Javascript 生成 HTTP GET 请求以启动和导航到流。流的 ID 必须指定为outcome属性的值:

索引.xhtml:

<h:form>
    Click to enter flow1
    <h:button outcome="flow1" value="Flow 1">
        <f:param name="testInput" value="hi there" />
    </h:button>
</h:form>

也可以看看:


如果要求在授予启动流程的权限之前必须进行一些检查,您必须手动初始化并导航到流程,如下所示:

索引.xhtml:

<h:form>
    Click to enter flow1
    <h:commandButton action="#{backingBean.startFlow1()}" value="Flow 1" />
</h:form>

flow1.xhtml:

<h:form>
    Hi this is page 1.
    <h:inputText label="Enter something:" value="#{flowScope.testOutput}"/><br/>
    Request parameter: #{flowScope.testInput}<br/>
    <h:commandButton action="returnFromFlow1"/>
</h:form>

支持豆:

public void startFlow1() {
    if (!permissionGranted) {
        // show "permission denied"
        return;
    }

    final FacesContext facesContext = FacesContext.getCurrentInstance();
    final Application application = facesContext.getApplication();

    // get an instance of the flow to start
    final String flowId = "flow1";
    final FlowHandler flowHandler = application.getFlowHandler();
    final Flow targetFlow = flowHandler.getFlow(facesContext,
            "", // definingDocumentId (empty if flow is defined in "faces-config.xml")
            flowId);

    // get the navigation handler and the view ID of the flow
    final ConfigurableNavigationHandler navHandler = (ConfigurableNavigationHandler) application.getNavigationHandler();
    final NavigationCase navCase = navHandler.getNavigationCase(facesContext,
            null, // fromAction
            flowId);
    final String toViewId = navCase.getToViewId(facesContext);

    // initialize the flow scope
    flowHandler.transition(facesContext,
            null, // sourceFlow
            targetFlow,
            null, // outboundCallNode
            toViewId); // toViewId

    // add the parameter to the flow scope
    flowHandler.getCurrentFlowScope()
            .put("testInput", "hi there2!");

    // navigate to the flow by HTTP GET request
    final String outcome = toViewId + "?faces-redirect=true";
    navHandler.handleNavigation(facesContext,
            null, // from action
            outcome);
}

请注意,在这种情况下,不能将参数添加到按钮,而必须将其添加到流范围!另请注意,必须通过NavigationHandler#handleNavigation()而不是重定向到流程,ExternalContext#redirect()否则流程范围将终止!

也可以看看:

于 2017-07-22T00:36:14.383 回答
0

请运行此示例,希望对您有所帮助。

<navigation-rule>
    <navigation-case>
        <from-outcome>flow1</from-outcome>
        <to-view-id>flow1.xhtml</to-view-id>
        <redirect></redirect>
    </navigation-case>
</navigation-rule>
于 2014-11-24T12:42:57.887 回答
0

好吧,如果我正确阅读了JSF-2.2 faces-config 模式,您应该能够在faces-config.xml<redirect/>中指定一个指令。因此,使用以下内容,您应该能够实现重定向:

       <navigation-rule>
           <from-view-id>/pages/test/test.xhtml</from-view-id>
               <navigation-case>
                   <from-outcome>flow1</from-outcome>
                   <to-flow-document-id>flow1.xhtml</to-flow-document-id>
                       <redirect />
              </navigation-case>
       </navigation-rule>
于 2014-10-11T20:11:27.500 回答