我正在使用 Spring Webflow 2,并且我有以下父流:
<flow ...>
...
<view-state id="show-task">
<transition on="approve" to="search">
<!-- lots of things -->
</transition>
<!-- several other transitions and other instructions -->
</view-state>
</flow>
我有一个子流程,在其中,我想在不修改父流程的情况下替换"search"
您在上面看到"execute"
的内容(除非它是为了使其更通用)。“很多事情”仍然必须在不被复制/粘贴到子流程的情况下执行。
怎么做?
谢谢!