JBPM6 - Embedded Web Designer in an Existing Application

Do you know of any draft guide / tutorial / example that can help me integrate jBPM web designer into an existing web application? Namely:

  • What maven libraries do I need to enable?
  • Is it possible to deploy designer-specific components in the main WAR application (that's all that is built in)?
  • How can I access the designer? Is there a specific url for this?

Thanks in advance for any hint.

+4
source share
1 answer

I finally found out how to do it.

- KIE (, - Drools Guvnor). jBPM. , , . jbpm-6.1.0.Final-installer-full.zip .

JBoss AS/WildFly KIE, http://localhost:8080/jbpm-console/.

BPMN, KIE, , , URL- Git . , URI.

BPMN - jBPM Designer BPMN 2, iframe HTML URL-, :

<html>
  <head>
    <title>Test</title>
  </head>
  <body>

    <h1>Test</h1>
    <p>Editor frame below:</p>
    <iframe height='800' src='http://localhost:8080/jbpm-console?standalone=&path=git://master@jbpm-playground/HR/src/main/resources/hiring.bpmn2' width='1000'></iframe>

  </body>
</html>

, iframe. HTML- -, , -, , JBoss AS/WildFly Java.

, , - , BPMN - API, -. , .

+3

All Articles