xrow/jbpm-bundle

该软件包已被废弃,不再维护。未建议替代软件包。

使用 jBPM 管理您的工作流。

维护者

详细信息

github.com/xrowgmbh/jBPMBundle

安装数: 3,748

依赖项: 0

建议者: 0

安全: 0

星标: 0

关注者: 12

分支: 2

类型:导入

该软件包尚未发布版本,信息不多。


README

一个用于与 JBPM 6 API 通信的 symfony2 扩展包。

启动 JBPM 服务器

docker run -p 8080:8080 -p 8001:8001 -d --name jbpm-workbench jboss/jbpm-workbench:latest

容器和 Web 应用程序启动后,您可以通过以下地址访问 jBPM 工作台:

https://:8080/jbpm-console

配置示例

您可以配置默认客户端参数和任务参数示例

```
// ezpublish/config/jbpmconf.yml
parameters:
    jbpm.client.config:
        username: xxxx
        password: xxxxx
        baseurl: https:///jbpm-console/rest/
        defaults_verify: true|false (true is default)

    jbpm.task.config:
        cms(project name):
           publish(process name):
               publishevent1(task name): xrow\jBPMBundle\Tests\publishevent1 (set path of the external function )
               publishevent2(task name): customer\shopbundle\tasks\publishevent2
           order(process name):
               oderevent1(task name): xrow\jBPMBundle\Tests\publishevent1
               oderevent2(task name): xrow\jBPMBundle\Tests\publishevent1
        ecommerce(project name):
           order(process name):
               oderevent1(task name): customer\shopbundle\tasks\oderevent1
```

通过添加以下内容将 jbpmconf.yml 导入到 ezpublish/config/ezpublish.yml

```
imports:
     - { resource: jbpmconf.yml }
```