在我的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从字面上理解字符串?
答案 0 :(得分:10)
我明白了:价值需要用单引号括起来:
<set name="flowScope.error" value="'foo.bar'" type="string" />