本文整理汇总了Java中org.springframework.webflow.mvc.servlet.FlowHandlerAdapter类的典型用法代码示例。如果您正苦于以下问题:Java FlowHandlerAdapter类的具体用法?Java FlowHandlerAdapter怎么用?Java FlowHandlerAdapter使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
FlowHandlerAdapter类属于org.springframework.webflow.mvc.servlet包,在下文中一共展示了FlowHandlerAdapter类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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;
}
示例3: flowHandlerAdapter
import org.springframework.webflow.mvc.servlet.FlowHandlerAdapter; //导入依赖的package包/类
@Bean
public FlowHandlerAdapter flowHandlerAdapter() {
JsfFlowHandlerAdapter adapter = new JsfFlowHandlerAdapter();
adapter.setFlowExecutor(flowExecutor());
return adapter;
}