Welcome 微信登录

首页 / 软件开发 / JAVA / Spring Web Flow 2.0入门 - global transition简介

Spring Web Flow 2.0入门 - global transition简介2011-02-01 IBM 吕焱飞顾名思义,global transition 是一种全局的 transition ,可在 flow 执行的各个 state 中被触发。

清单 35 global-transitons

<global-transitions>
<transition on="cancelShopping" to="returnToIndex"/>
</global-transitions>

客户端请求中如果包含 _eventId=cancelShopping ,则会重新回到 index.jsp 页面。