目前由于 Post/Redirect/Get 模式,所有流 url 都类似于<site_url>/flow_name?execution=?
,并且不保留输入 GET 参数。因此,用户无法复制 url 或将其添加为书签。
有什么建议可以巧妙地完成吗?
目前由于 Post/Redirect/Get 模式,所有流 url 都类似于<site_url>/flow_name?execution=?
,并且不保留输入 GET 参数。因此,用户无法复制 url 或将其添加为书签。
有什么建议可以巧妙地完成吗?
我们可以通过自定义SWF API的FlowHandlerAdapter来为基于 SWF 的应用程序的 URL 添加书签。
这是一个示例:
我的 SWF 配置文件将具有:
<bean id="flowController" class="org.springframework.webflow.mvc.servlet.FlowController">
<property name="flowHandlerAdapter" ref="customFlowHandlerAdapter" />
</bean>
<bean id="customFlowHandlerAdapter" class="com.xyz.CustomFlowHandlerAdapter">
<property name="flowExecutor" ref="flowExecutor" />
<property name="flowUrlHandler" >
<bean class="com.xyz.CustomURLFlowHandler" />
</property>
</bean>
我的 CustomFlowHandlerAdapter 将有:
public class CustomFlowHandlerAdapter extends FlowHandlerAdapter {
...
@Override
public ModelAndView handle(HttpServletRequest request,
HttpServletResponse response, Object handler) throws Exception {
FlowHandler flowHandler = (FlowHandler) handler;
checkAndPrepare(request, response, false);
String flowExecutionKey = this.getFlowUrlHandler()
.getFlowExecutionKey(request);
if (flowExecutionKey != null)
try {
ServletExternalContext context = createServletExternalContext(
request, response);
FlowExecutionResult result = this.getFlowExecutor().resumeExecution(
flowExecutionKey, context);
handleFlowExecutionResult(result, context, request, response,
flowHandler);
} catch(org.springframework.webflow.execution.repository.NoSuchFlowExecutionException ex){
response.sendRedirect(request.getRequestURI());
} catch(org.springframework.webflow.execution.repository.BadlyFormattedFlowExecutionKeyException ex){
response.sendRedirect(request.getRequestURI());
} catch (FlowException e) {
handleFlowException(e, request, response, flowHandler);
}
....
在这里,我正在捕获 NoSuchFlowExecutionException 并在没有任何参数的情况下重定向到确切的流 URL。在这里您可以捕获并重新包含您的参数
因此,我可以从任何状态为我的 URL 添加书签(总是从第一个开始),如果需要,我也可以发送我自己的参数。
您始终可以使用指向您的流程起点之一的链接并为其添加书签。
例如,您可以<site_url>/flow_name?personId=123&projectId=456
假设您的流程有两个输入,personId
并且projectId
. 但是您需要知道网址(您必须将其提供给用户),您不能使用地址栏上的网址。
即使您想这样做,您也无法使用指向流中特定状态的链接并为其添加书签(除非您在流的开头添加一些逻辑以根据值将您引导到特定事件的输入)。