Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/jsf-2/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Jsf 2 从'Switch Node'的结果将流定向到'Method Call Node'不起作用_Jsf 2_Flow Scope - Fatal编程技术网

Jsf 2 从'Switch Node'的结果将流定向到'Method Call Node'不起作用

Jsf 2 从'Switch Node'的结果将流定向到'Method Call Node'不起作用,jsf-2,flow-scope,Jsf 2,Flow Scope,我已将我的流程定义为: builder.id("", PublisherBean.PUBLISHER_FLOW_NAME); builder.viewNode("list", "/pages/publishers.xhtml"); builder.viewNode("details", "/pages/publishers-details.xhtml"); builder.viewNode("deleted", "/pages/publishers-delete

我已将我的流程定义为:

    builder.id("", PublisherBean.PUBLISHER_FLOW_NAME);

    builder.viewNode("list", "/pages/publishers.xhtml");
    builder.viewNode("details", "/pages/publishers-details.xhtml");
    builder.viewNode("deleted", "/pages/publishers-deleted.xhtml");
    builder.viewNode("form", "/pages/publishers-form.xhtml");
    builder.viewNode("exit", "/index.xhtml");

    builder.methodCallNode("invoke-update")
            .expression("#{publisherBean.update()}")
            .defaultOutcome("details");

    builder.methodCallNode("switch-fail")
            .defaultOutcome("invoke-publishers")
            .expression("#{publisherBean.switchFail()}");

    builder.switchNode("proceed-action-request")
            .defaultOutcome("switch-fail")
            .switchCase()
            .condition("#{publisherBean.actionType.ifEdit()}").fromOutcome("form");

    builder.switchNode("go-for-it")
            .defaultOutcome("switch-fail")
            .switchCase()
            .switchCase()
            .condition("#{publisherBean.actionType.ifEdit()}").fromOutcome("invoke-update");
如您所见,有两个交换机节点。第一个指向视图节点,第二个指向方法调用节点

第一个很好用,但第二个让我头疼。第二个是给我一个错误

对于结果为“继续表单”的操作“{publisherBean.procedue}”,找不到与from view id“/pages/publishers form.xhtml”匹配的导航案例

继续功能只是

public String proceed() {
        LOG.log(Level.OFF, "Form proceed in action type {0}", actionType);
        return "go-for-it";
    }
记录的信息确认publisherBean.actionType.ifEdit返回true,但忽略该事实。若我将结果从invoke update更改为form或任何其他视图节点id,那个么它可以正常工作


是我做错了什么,还是方法调用节点不能用作交换节点的结果?

我也遇到了这个问题。在我的例子中,问题在于在另一个方法调用节点之后调用方法调用节点

我仔细研究了一下,发现了一个问题:com.sun.faces.application.NavigationHandlerImpl.synthesizeCaseStruct方法。此方法用于确定从methodCallNode或switchCallNode转到何处,它只查看viewNodes和returnNodes

private CaseStruct synthesizeCaseStruct(FacesContext context, Flow flow, String fromAction, String outcome) {
    CaseStruct result = null;

    FlowNode node = flow.getNode(outcome);
    if (null != node) {
        if (node instanceof ViewNode) {
            result = new CaseStruct();
            result.viewId = ((ViewNode)node).getVdlDocumentId();
            result.navCase = new MutableNavigationCase(fromAction, 
                    fromAction, outcome, null, result.viewId, 
                    flow.getDefiningDocumentId(), null, false, false);
        } else if (node instanceof ReturnNode) {
            String fromOutcome = ((ReturnNode)node).getFromOutcome(context);
            FlowHandler flowHandler = context.getApplication().getFlowHandler();
            try {
                flowHandler.pushReturnMode(context);
                result = getViewId(context, fromAction, fromOutcome, FlowHandler.NULL_FLOW);
                // We are in a return node, but no result can be found from that
                // node.  Show the last displayed viewId from the preceding flow.
                if (null == result) {
                    Flow precedingFlow = flowHandler.getCurrentFlow(context);
                    if (null != precedingFlow) {
                        String toViewId = flowHandler.getLastDisplayedViewId(context);
                        if (null != toViewId) {
                            result = new CaseStruct();
                            result.viewId = toViewId;
                            result.navCase = new MutableNavigationCase(context.getViewRoot().getViewId(),
                                    fromAction,
                                    outcome,
                                    null,
                                    toViewId,
                                    FlowHandler.NULL_FLOW,                            
                                    null,
                                    false,
                                    false);

                        }
                    }
                } else {
                    result.newFlow = FlowImpl.SYNTHESIZED_RETURN_CASE_FLOW;
                }
            }
            finally {
                flowHandler.popReturnMode(context);
            }

        }
    } else {
        // See if there is an implicit match within this flow, using outcome
        // to derive a view id within this flow.
        String currentViewId = outcome;
        // If the viewIdToTest needs an extension, take one from the currentViewId.
        String currentExtension;
        int idx = currentViewId.lastIndexOf('.');
        if (idx != -1) {
            currentExtension = currentViewId.substring(idx);
        } else {
            // PENDING, don't hard code XHTML here, look it up from configuration
            currentExtension = ".xhtml";
        }
        String viewIdToTest = "/" + flow.getId() + "/" + outcome + currentExtension;
        ViewHandler viewHandler = Util.getViewHandler(context);
        viewIdToTest = viewHandler.deriveViewId(context, viewIdToTest);
        if (null != viewIdToTest) {
            result = new CaseStruct();
            result.viewId = viewIdToTest;
            result.navCase = new MutableNavigationCase(fromAction, 
                    fromAction, outcome, null, result.viewId, 
                    null, false, false);
        }

    }
    return result;
}