diff --git a/spring-webflow/src/main/resources/org/springframework/webflow/engine/model/builder/xml/spring-webflow-2.0.xsd b/spring-webflow/src/main/resources/org/springframework/webflow/engine/model/builder/xml/spring-webflow-2.0.xsd index 74247ab9..130caeca 100644 --- a/spring-webflow/src/main/resources/org/springframework/webflow/engine/model/builder/xml/spring-webflow-2.0.xsd +++ b/spring-webflow/src/main/resources/org/springframework/webflow/engine/model/builder/xml/spring-webflow-2.0.xsd @@ -470,10 +470,10 @@ The name of the view to render. Is typically a flow-relative path to a view tem Can also be an evaluatable expression:
- ${flowScope.myViewExpression}
+ #{flowScope.myViewExpression}
The externalRedirect: prefix may be used to redirect to an external location, typically to interface with an external system or controller.
-External redirect query parameters may be specified using ${expressions} that evaluate against the request context.
+External redirect query parameters may be specified using #{expressions} that evaluate against the request context.
The supported formats for an encoded externalRedirect expression are:
externalRedirect:It can also be an evaluatable expression:@@ -484,15 +484,15 @@ The supported formats for an encoded externalRedirect expression are: For example: externalRedirect:/hotels/index - externalRedirect:http://someOtherSystem?orderId=${order.id}&callbackUrl=${flowExecutionUrl} + externalRedirect:http://someOtherSystem?orderId=#{order.id}&callbackUrl=#{flowExecutionUrl}The flowRedirect: prefix may be used to redirect to another flow:- flowRedirect:myOtherFlow?someData=${flowScope.data} + flowRedirect:myOtherFlow?someData=#{flowScope.data}For exotic usages, you may plug in a custom ViewFactory bean you define:- ${myCustomViewFactory} + #{myCustomViewFactory}When this attribute is not specified, the view to render will be determined by convention. The default convention is to treat the id of this view state as the view identifier. @@ -914,10 +914,10 @@ When specified, the value can be a flow-relative path to a view template:
- ${flowScope.myViewExpression}
+ #{flowScope.myViewExpression}
The externalRedirect: prefix may be used to request a redirect to an external location, typically to interface with an external system or controller.
-External redirect query parameters may be specified using ${expressions} that evaluate against the request context.
+External redirect query parameters may be specified using #{expressions} that evaluate against the request context.
The supported formats for an encoded externalRedirect expression are:
externalRedirect:Can also be an evaluatable expression:@@ -928,15 +928,15 @@ The supported formats for an encoded externalRedirect expression are: For example: externalRedirect:/hotels/index - externalRedirect:http://someOtherSystem?orderId=${order.id} + externalRedirect:http://someOtherSystem?orderId=#{order.id}The flowRedirect: prefix may be used to redirect to another flow:- flowRedirect:myOtherFlow?someData=${flowScope.data} + flowRedirect:myOtherFlow?someData=#{flowScope.data}For exotic usages, you may plug in a custom ViewFactory bean you define:- ${myCustomViewFactory} + #{myCustomViewFactory}
When this attribute is not specified, no final response will be issued. @@ -1415,7 +1415,7 @@ The most basic value is a static event id:
Sophisticated transitional expressions are also supported when enclosed in a delimited expression:- <transition on="${currentEvent.id == 'submit' &;amp;& flowScope.attribute == 'foo'}" to="state"/> + <transition on="#{currentEvent.id == 'submit' &;amp;& flowScope.attribute == 'foo'}" to="state"/>]]> @@ -1441,7 +1441,7 @@ Superclasses of the configured exception class match by default. Use this attri -The value of this attribute may be a static state identifier (e.g. to="displayForm") or a dynamic expression (e.g. to="${flowScope.previousViewState}"). +The value of this attribute may be a static state identifier (e.g. to="displayForm") or a dynamic expression (e.g. to="#{flowScope.previousViewState}"). If no value is specified, this transition acts as a simple event handler and will not change the state of the flow. ]]> diff --git a/spring-webflow/src/main/resources/org/springframework/webflow/engine/model/builder/xml/spring-webflow-2.4.xsd b/spring-webflow/src/main/resources/org/springframework/webflow/engine/model/builder/xml/spring-webflow-2.4.xsd index c7786941..5c68c46a 100644 --- a/spring-webflow/src/main/resources/org/springframework/webflow/engine/model/builder/xml/spring-webflow-2.4.xsd +++ b/spring-webflow/src/main/resources/org/springframework/webflow/engine/model/builder/xml/spring-webflow-2.4.xsd @@ -470,10 +470,10 @@ The name of the view to render. Is typically a flow-relative path to a view tem
- ${flowScope.myViewExpression}
+ #{flowScope.myViewExpression}
The externalRedirect: prefix may be used to redirect to an external location, typically to interface with an external system or controller.
-External redirect query parameters may be specified using ${expressions} that evaluate against the request context.
+External redirect query parameters may be specified using #{expressions} that evaluate against the request context.
The supported formats for an encoded externalRedirect expression are:
externalRedirect:It can also be an evaluatable expression:@@ -484,15 +484,15 @@ The supported formats for an encoded externalRedirect expression are: For example: externalRedirect:/hotels/index - externalRedirect:http://someOtherSystem?orderId=${order.id}&callbackUrl=${flowExecutionUrl} + externalRedirect:http://someOtherSystem?orderId=#{order.id}&callbackUrl=#{flowExecutionUrl}The flowRedirect: prefix may be used to redirect to another flow:- flowRedirect:myOtherFlow?someData=${flowScope.data} + flowRedirect:myOtherFlow?someData=#{flowScope.data}For exotic usages, you may plug in a custom ViewFactory bean you define:- ${myCustomViewFactory} + #{myCustomViewFactory}When this attribute is not specified, the view to render will be determined by convention. The default convention is to treat the id of this view state as the view identifier. @@ -929,10 +929,10 @@ When specified, the value can be a flow-relative path to a view template:
- ${flowScope.myViewExpression}
+ #{flowScope.myViewExpression}
The externalRedirect: prefix may be used to request a redirect to an external location, typically to interface with an external system or controller.
-External redirect query parameters may be specified using ${expressions} that evaluate against the request context.
+External redirect query parameters may be specified using #{expressions} that evaluate against the request context.
The supported formats for an encoded externalRedirect expression are:
externalRedirect:@@ -943,15 +943,15 @@ The supported formats for an encoded externalRedirect expression are: For example: externalRedirect:/hotels/index - externalRedirect:http://someOtherSystem?orderId=${order.id} + externalRedirect:http://someOtherSystem?orderId=#{order.id}The flowRedirect: prefix may be used to redirect to another flow:- flowRedirect:myOtherFlow?someData=${flowScope.data} + flowRedirect:myOtherFlow?someData=#{flowScope.data}For exotic usages, you may plug in a custom ViewFactory bean you define:- ${myCustomViewFactory} + #{myCustomViewFactory}
When this attribute is not specified, no final response will be issued. @@ -1430,7 +1430,7 @@ The most basic value is a static event id:
Sophisticated transitional expressions are also supported when enclosed in a delimited expression:- <transition on="${currentEvent.id == 'submit' &;amp;& flowScope.attribute == 'foo'}" to="state"/> + <transition on="#{currentEvent.id == 'submit' &;amp;& flowScope.attribute == 'foo'}" to="state"/>]]> @@ -1456,7 +1456,7 @@ Superclasses of the configured exception class match by default. Use this attri -The value of this attribute may be a static state identifier (e.g. to="displayForm") or a dynamic expression (e.g. to="${flowScope.previousViewState}"). +The value of this attribute may be a static state identifier (e.g. to="displayForm") or a dynamic expression (e.g. to="#{flowScope.previousViewState}"). If no value is specified, this transition acts as a simple event handler and will not change the state of the flow. ]]>