Camunda - 你的 API 在哪里?

Camunda - where is your API?

我安装了教程中的 camunda https://github.com/berndruecker/camunda-on-pcf 然后把它拿起来 运行

  1. 在本地主机 (http://localhost:8080/app/cockpit/default/#/dashboard)
  2. 在我们的 PCF 上(https://our-private-pcf/app/cockpit/default/#/仪表板)

然后通过 Camunda 建模器制作了一个 BPMN 模型。

问题 1:我是为“Camunda 平台”还是为“Camunda 云”选择 BPMN 图?

问题二: 我必须为“REST 端点”(平台)或“联系点”(云自我管理)或“集群 URL”(云 SaaS)输入哪个值?

我尝试了 a) 本地主机或 Cloud URL 和 b) 上下文根“/engine-rest/”或“/API/”或“/APP/”的多种组合依此类推,但其中 none 有效。

感谢您的想法,问候

好的,一天的惊叹会有所帮助。

第一个问题:Bernds 教程安装了一个 Spring Boot Camunda,这意味着它是一个平台,而不是云解决方案,即使我将它安装到我的云中也是如此。

第二个问题:API 上下文根是文档中提到的示例的 none。但是如果你有一个运行:使用带有开发者插件的浏览器来观察网络流量。捆绑的 Web 应用程序“Cockpit”、“Tasklist”和“Admin”是使用属于此实例的 API 的 NodeJS 应用程序。

Browser showing Camunda Cockpit and Firefox Developer Console

在这种情况下,我的 URL 到 API 是 http://localhost:8080/api/engine/engine/default/

Camunda Modeler upload BPMN

camunda 主控室使用自己的内部 REST api。如果您还想公开外部 api,则必须包括 rest-starter dependency:

 <dependency>
     <groupId>org.camunda.bpm.springboot</groupId>
     <artifactId>camunda-bpm-spring-boot-starter-rest</artifactId>
     <version>...</version>
 </dependency>

然后文档中提到的端点将匹配。