spring webflow中的_eventId无效

Mar*_*vic 3 spring spring-mvc spring-webflow-2 event-id

有没有办法在spring webflow中处理发生的eventId或没有eventId参数?

例如,对于此webflow

<flow xmlns="http://www.springframework.org/schema/webflow" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/webflow http://www.springframework.org/schema/webflow/spring-webflow-2.0.xsd">
    <view-state id="welcome">
        <transition on="goForward" to="nextStep"/>
    </view-state>
    <view-state id="nextStep">
        <transition on="endFlow" to="finishStep" />
    </view-state>
    <end-state id="finishStep"/>    
    <global-transitions>
        <transition on="cancel" to="finishStep"/>
    </global-transitions>
</flow>
Run Code Online (Sandbox Code Playgroud)

如何使用param like处理请求_eventId=unexistingAction或没有_eventIdparam的请求?这通常会产生一个带有堆栈跟踪的页面......

no transition found on occurence of event in state of flow...
Run Code Online (Sandbox Code Playgroud)

Phi*_*der 6

这是您可以处理不存在的转换的方法:

<global-transitions>
    <transition on-exception="org.springframework.webflow.engine.NoMatchingTransitionException" to="handlingViewState">
        <evaluate expression="handlingBean.handle(flowExecutionException)"></evaluate>
    </transition>
</global-transitions>
Run Code Online (Sandbox Code Playgroud)