在camunda7.13中如何Expression中创建任务
时间: 2024-02-03 22:12:52 浏览: 64
SuiteCRM 中文包
在Camunda 7.13中,您可以使用表达式语言来创建任务。以下是一些示例:
1. 使用Java表达式:
```
${execution.setVariable("taskName", "My Task")}
${execution.setVariable("assignee", "John Doe")}
${execution.setVariable("dueDate", new java.util.Date())}
${execution.setVariable("priority", 50)}
```
2. 使用Groovy表达式:
```
${execution.setVariable("taskName", "My Task")}
${execution.setVariable("assignee", "John Doe")}
${execution.setVariable("dueDate", new Date())}
${execution.setVariable("priority", 50)}
```
3. 使用JavaScript表达式:
```
execution.setVariable("taskName", "My Task");
execution.setVariable("assignee", "John Doe");
execution.setVariable("dueDate", new Date());
execution.setVariable("priority", 50);
```
以上示例中,使用`execution.setVariable`方法来设置任务的相关属性,例如任务名称、受让人、截止日期和优先级等。您可以根据自己的需求使用不同的表达式语言。
阅读全文