有什么方法可以处理spring webflow 中不存在的eventIds或缺少eventId参数?
例如对于这个网络流
<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>
如何处理带参数的_eventId=unexistingAction
请求或不带参数的请求_eventId
?这通常会产生一个带有堆栈跟踪的页面......
no transition found on occurence of event in state of flow...