From f03ae0c1249c2d74c35e35e780834c7604aab194 Mon Sep 17 00:00:00 2001 From: Keith Donald Date: Tue, 24 Mar 2009 04:32:20 +0000 Subject: [PATCH] transition action stop on error note --- spring-webflow-reference/src/views.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/spring-webflow-reference/src/views.xml b/spring-webflow-reference/src/views.xml index 01b8ea0a..ef40b0a6 100644 --- a/spring-webflow-reference/src/views.xml +++ b/spring-webflow-reference/src/views.xml @@ -478,6 +478,12 @@ public class BookingAction { } }]]> + + + When there is more than one action defined on a transition, if one returns an error result the remaining actions in the set will not be executed. + If you need to ensure one transition action's result cannot impact the execution of another, define a single transition action that invokes a method that encapsulates all the action logic. + + Global transitions