执行
# 初始化你的FlowExecutor执行器
通过以下代码你可以轻易的初始化FlowExecutor
处理器:
LiteflowConfig config = new LiteflowConfig();
config.setRuleSource("base/flow.xml");
FlowExecutor flowExecutor = FlowExecutorHolder.loadInstance(config);
LiteFlow有很多其他的配置,但非必须,想知道有哪些可以参考Springboot和Spring那两章节的配置一章,有详细的说明。
提示
要注意的是,不建议每次执行流程都去初始化FlowExecutor
,这个对象的初始化工作相对比较重,全局只需要初始化一次就好了。建议在项目启动时初始化或者第一次执行的时候初始化。
# 用FlowExecutor执行
LiteflowResponse<DefaultSlot> response = flowExecutor.execute2Resp("chain1", "arg");
帮助我们改善此文档 (opens new window)
上次更新: 2022/10/07, 00:22:18