动态动作状态的问题

时间:2011-05-09 11:34:25

标签: java spring-webflow

我对Spring Webflow有疑问。我的流XML定义是:

<?xml version="1.0" encoding="UTF-8"?>
<flow xmlns="http://www.springframework.org/schema/webflow"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/webflow
        http://www.springframework.org/schema/webflow/spring-webflow-2.0.xsd" parent="changeLang">

    <input name="hash" required="true"/>

    <action-state id="decideAction">
        <set name="flowScope.goTo" value ="verifyActionService.verifyHash(hash)" />
        <transition to="${goTo}" ></transition> 
    </action-state>

    <view-state id="correctVerify" view="registered" model="userAddressesForm">
        <transition on="addPhoneNumber" to="correctVerify">
            <evaluate expression="verifyActionService.addPhoneNumber(userAddressesForm)" />
        </transition>
        <transition on="deletePhoneNumber" to="correctVerify">
            <evaluate expression="verifyActionService.deletePhoneNumber(userAddressesForm, requestParameters.deleteNumber)" />
        </transition>
    </view-state>

    <view-state id="notCorrectVerify" view="register"></view-state>

</flow>

方法verifyHash返回状态id等于“correctVerify”,如下所示:

public String verifyHash(String hash) {
    return "correctVerify";
}

当我运行它时,会出现如下错误:

at java.lang.Thread.run(Thread.java:662)
Caused by: java.lang.IllegalArgumentException: Cannot find state with id '${goTo}' in flow 'verify' -- Known state ids are 'array<String>['decideAction', 'correctVerify', 'notCorrectVerify', 'start']'
at org.springframework.webflow.engine.Flow.getStateInstance(Flow.java:348)
at org.springframework.webflow.engine.support.DefaultTargetStateResolver.resolveTargetState(DefaultTargetStateResolver.java:60)
at org.springframework.webflow.engine.Transition.execute(Transition.java:217)
at org.springframework.webflow.engine.impl.FlowExecutionImpl.execute(FlowExecutionImpl.java:391)
at org.springframework.webflow.engine.impl.RequestControlContextImpl.execute(RequestControlContextImpl.java:214)
at org.springframework.webflow.engine.TransitionableState.handleEvent(TransitionableState.java:119)

有人能帮助我吗?

1 个答案:

答案 0 :(得分:1)

to的{​​{1}}属性采用字符串文字。如果要组合字符串文字和EL,则需要使用模板表达式:

transition

有关两种不同类型表达式的信息,请参阅文档的this部分。

此外,您确定需要从服务层返回视图状态名称吗? <transition to="#{goTo}"/> 的一般模式是使用<action-state>调用方法,然后根据<evaluate>的结果定义到不同状态的不同转换...类似于switch语句。请查看有关行动状态的this部分。