Flowable入门系列文章53 - 壳任务
Posted 分享牛
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Flowable入门系列文章53 - 壳任务相关的知识,希望对你有一定的参考价值。
1、描述
Shell任务允许您运行shell脚本和命令。请注意,Shell任务不是 BPMN 2.0规范的正式任务。
2、定义一个Shell任务
Shell任务是作为一个专用的服务任务来实现的,通过为服务任务的类型设置’shell’来定义。
<serviceTask id="shellEcho" flowable:type="shell">
Shell任务由字段注入配置。这些属性的所有值都可以包含EL表达式,这些表达式在流程执行期间在运行时被解析。以下属性可以设置:
属性 | 需要 | 类型 | 描述 | 默认 |
---|---|---|---|---|
命令 | 是 | 串 | Shell命令来执行。 | |
arg0-5 | 没有 | 串 | 参数0到参数5 | |
等待 | 没有 | 真假 | 如果需要,等待,直到shell进程终止。 | 真正 |
redirectError | 没有 | 真假 | 将标准错误与标准输出合并。 | 假 |
cleanEnv | 没有 | 真假 | Shell进程不会继承当前的环境。 | 假 |
outputVariable | 没有 | 串 | 保存输出的变量的名称 | 输出不被记录。 |
errorCodeVariable | 没有 | 串 | 保存任何结果错误代码的变量的名称 | 错误级别未注册。 |
目录 | 没有 | 串 | shell进程的默认目录 | 当前目录 |
3、用法示例
以下XML片段显示了使用Shell任务的示例。它运行shell脚本“cmd / c echo EchoTest”,等待它被终止并把结果放在resultVar中:
<serviceTask id="shellEcho" flowable:type="shell" >
<extensionElements>
<flowable:field name="command" stringValue="cmd" />
<flowable:field name="arg1" stringValue="/c" />
<flowable:field name="arg2" stringValue="echo" />
<flowable:field name="arg3" stringValue="EchoTest" />
<flowable:field name="wait" stringValue="true" />
<flowable:field name="outputVariable" stringValue="resultVar" />
</extensionElements>
</serviceTask>
上面文章来自盘古BPM研究院:http://vue.pangubpm.com/
文章翻译提交:https://github.com/qiudaoke/flowable-userguide
了解更多文章可以关注微信公众号:
以上是关于Flowable入门系列文章53 - 壳任务的主要内容,如果未能解决你的问题,请参考以下文章