如何在Spring Webflow中的end state externalredirect中设置一些参数?

时间:2017-09-21 05:24:09

标签: spring spring-webflow spring-webflow-2

我的问题是关于Spring Webflow。我们如何在最终状态中设置变量?

<action-state id="saveanyformula">
    <evaluate expression="--code---"></evaluate>
    <transition to="end"></transition>
</action-state>

<end-state id="end" view="externalRedirect:new/lists">

我试过下面的代码,但它不起作用:

<end-state id="end" view="externalRedirect:new/lists?foo1=${flowScope.foo1}">

1 个答案:

答案 0 :(得分:1)

试试这个:

 <end-state id="end" view="externalRedirect:new/lists?foo1=#{flowScope.foo1}">