如何在异常上设置文字字符串flowScope值?

时间:2011-10-25 21:57:52

标签: spring spring-webflow

在我的Spring网络流程应用中,我的一个action-state转换看起来像这样:

    <transition on-exception="com.foo.BarException" to="barView">
        <set name="flowScope.error" value="foo.bar" type="string" />
    </transition>

我想将flowScope.error设置为文字字符串“foo.bar”,但是Spring将其解释为对foo对象的bar属性的引用。我怎样才能强制Spring从字面上理解字符串?

1 个答案:

答案 0 :(得分:10)

我明白了:价值需要用单引号括起来:

<set name="flowScope.error" value="'foo.bar'" type="string" />