gpt4 book ai didi

java - 在Spring Webflow中设置多个if else条件决策状态id

转载 作者:行者123 更新时间:2023-12-02 02:44:49 24 4
gpt4 key购买 nike

我正在开发现有的 Spring Webflow 应用程序。我在子流中设置了一个变量,我想使用决策状态来确定操作类。应用程序已指定决策状态 ID

<decision-state id="condition1">
<if test="flowScope.conditionCheck1 || flowScope.conditionCheck2" then="action1" else="action2"/>
</decision-state>

现在我想测试条件3是否成立,如果成立,我想执行 Action 3。有谁知道我该如何做到这一点?

最佳答案

为了编写 if else 条件,我在“decision-state-id”内编写了多个 if 条件,而 else 条件则写在最后一个 if 条件中,这对我来说效果很好。

<decision-state id="condition1">
<if test="flowScope.conditionCheck1 || flowScope.conditionCheck2" then="action1"/>
<if test="flowScope.conditionCheck3 then="action3" else="action2"/>
</decision-state>

关于java - 在Spring Webflow中设置多个if else条件决策状态id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44786543/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com