其他分享
首页 > 其他分享> > Spring Webflow 2.3.0-如何在表单操作方法中获取flowExecutionKey?

Spring Webflow 2.3.0-如何在表单操作方法中获取flowExecutionKey?

作者:互联网

我在表单操作类中有一些代码,需要从RequestContext获取flowExecutionKey.我似乎找不到有关如何执行此操作的任何文档.我的课看起来像这样:

public class MyFormAction extends FormAction
{
    public Event doStuff(RequestContext context)
    {
        String flowExecutionKey = ...??
        ...
    }
}

我知道我真的不需要获取flowExecutionKey,但是我正在处理一些需要它的遗留代码.该方法被称为视图状态的输入动作.我尝试了context.getFlowExecutionContext().getKey(),但它返回null. context.getFlowExecutionUrl()也返回null.有什么办法吗?

更新

我正在玩这个游戏,当在< on-render>中调用该方法时,context.getFlowExecutionContext().getKey()确实获得了flowExecutionKey.代替< on-entry>.还值得注意的是,它在< on-entry>期间有效.在以后的视图状态.它不起作用的视图状态是我流程中的第一个视图状态.是否出于某些原因我无法在< on-entry>中获得flowExecutionKey?在第一个视图状态?

解决方法:

< on-entry>初始POST到服务器期间正在执行回调.这将具有类似于http:// server / myflow的URL.完成之后,webflow将发出重定向到http:// server / myflow?execution = e1s1.在此通话期间,< on-render>执行.

因此,您未在初始的“渲染中”获得密钥的原因是尚未分配密钥.并且您在稍后的< on-render>中看到的键实际上是上一个视图的键.

还要看看RequestContext.getFlowExecutionUrl()-它将告诉您当前请求的URL.这应该会有所启发.

标签:spring-webflow,spring
来源: https://codeday.me/bug/20191201/2077394.html