Spring webflow: redirecting to final state depending on some input

There is some input in my stream, i.e.

<input name="someInput" type="long" required="true"/> 

and I would like to redirect to the final state to a location that depends on this input. I am trying to do the following:

 <end-state id="done" view="externalRedirect:contextRelative:/blahblah/${someInput}"/> 

This does not work (the web stream does not replace $ {someInput} with its value (it treats this as a standard string. Do you know how to do this correctly?

+4
source share
1 answer

If you are talking about Webflow 2.0, try

 <end-state id="done" view="externalRedirect:contextRelative:/blahblah/#{someInput}"/> 
+5
source

All Articles