I have a diffecult to work With Task List 8.5 in Spring boot
private CamundaTaskListClient camundaTaskListClient;
@PostMapping("/{processInstanceKey}")
public void completeTaskProcess(@PathVariable String processInstanceKey, @RequestBody Map<String, Object> variables) throws TaskListException {
camundaTaskListClient.completeTask(processInstanceKey,variables);
}
}
Camunda configuration
zeebe.client.broker.gatewayAddress=localhost:26500
zeebe.client.security.plaintext=true
zeebe.client.requestTimeout=15000
Tasklist Configuration
camunda.client.auth.username=demo
camunda.client.auth.password=demo
camunda.client.tasklist.enabled=true
camunda.client.tasklist.base-url=http://localhost:8082
camunda.client.operate.enabled=true
camunda.client.operate.base-url=http://localhost:8081