本文整理汇总了Java中org.springframework.webflow.mvc.servlet.FlowHandlerAdapter.setFlowExecutor方法的典型用法代码示例。如果您正苦于以下问题:Java FlowHandlerAdapter.setFlowExecutor方法的具体用法?Java FlowHandlerAdapter.setFlowExecutor怎么用?Java FlowHandlerAdapter.setFlowExecutor使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.springframework.webflow.mvc.servlet.FlowHandlerAdapter
的用法示例。
在下文中一共展示了FlowHandlerAdapter.setFlowExecutor方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: flowHandlerAdapter
import org.springframework.webflow.mvc.servlet.FlowHandlerAdapter; //导入方法依赖的package包/类
/**
* Spring MVC {@link HandlerAdapter} that encapsulates the generic workflow associated
* with executing flows.
*
* Set the handler adapter to pass flow output to the Spring MVC flash scope.
*
* @return the Spring MVC HandlerAdapter for web flows
*/
@Bean
public FlowHandlerAdapter flowHandlerAdapter() {
FlowHandlerAdapter handlerAdapter = new FlowHandlerAdapter();
handlerAdapter.setFlowExecutor(this.flowExecutor());
handlerAdapter.setSaveOutputToFlashScopeOnRedirect(this.saveOutputToflashScope);
return handlerAdapter;
}
示例2: flowHandlerAdapter
import org.springframework.webflow.mvc.servlet.FlowHandlerAdapter; //导入方法依赖的package包/类
@Bean
public FlowHandlerAdapter flowHandlerAdapter() {
FlowHandlerAdapter handlerAdapter = new FlowHandlerAdapter();
handlerAdapter.setFlowExecutor(this.webFlowConfig.flowExecutor());
handlerAdapter.setSaveOutputToFlashScopeOnRedirect(true);
return handlerAdapter;
}