您需要將您的kjar作爲maven依賴項添加到您的項目中,以創建通過jbpm-console創建的自定義對象。那麼你可以通過地圖。
爲了檢索與對象的值,你需要在地圖使用
RemoteRestRuntimeEngineFactory restSessionFactory = new RemoteRestRuntimeEngineFactory(process,
new URL("http://127.0.0.1:8080/business-central"),
"username, "pass");
RuntimeEngine engine = restSessionFactory.newRuntimeEngine();
TaskService taskService = engine.getTaskService();
Task task = taskService.getTaskById(taskId);
long contentId = task.getTaskData().getDocumentContentId();
Content content = taskService.getContentById(contentId);
**((Map< String,Object >) ContentMarshallerHelper.unmarshall(content.getContent(), null));**
來源
2014-08-25 15:32:56
Tex
嗨德州,感謝您的回答。我在最初的問題中並不清楚。我不想使用REST JBPM API。我想使用JBPM提供的純HTTP/REST方法,以避免加載/使用API。與Solr/ElasticSearch相似的功能。 – tpanagopoulos