Skip to content
当前页

6 应用快速接入

6.1 host配置

192.101.65.88 bpm-test.chinapost.com.cn

192.101.65.88 demo-bpm-test.chinapost.com.cn

6.2 maven仓库配置

修改maven的setting.xml配置,增加新的仓库

xml
<profile>
  <id>jgptb-yys-cpbf-releases</id>
    <repositories>
    <repository>
      <id>jgptb-yys-cpbf-releases</id>
      <name>jgptb-yys-cpbf-releases</name>
      <url>http://192.102.20.230:8081/repository/jgptb-yys-cpbf-releases/</url>
    </repository>
  </repositories>
</profile>

6.3 引入依赖

接入系统需使用springboot环境。bpm方提供sdk,业务方拿到sdk并安装,然后导入sdk依赖包,坐标如下:

xml
<dependency>
    <groupId>com.cpit.bpm</groupId>
    <artifactId>cpit-bpm-sdk</artifactId>
    <version>2.3.8-RELEASE</version>
    <exclusions>
        <exclusion>
            <groupId>cn.hutool</groupId>
            <artifactId>hutool-all</artifactId>
        </exclusion>
        <exclusion>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger2</artifactId>
        </exclusion>
        <exclusion>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger-ui</artifactId>
        </exclusion>
    </exclusions>
</dependency>

注:如和依赖系统存在依赖冲突,请参阅如上所示排除:

6.4 修改配置

xml
cpit:
  engine:
    url: http://bpm-test.chinapost.com.cn/cpit-engine #参阅示例demo不需要调整
  form:
    url: <http://bpm-test.chinapost.com.cn/cpit-form> #参阅示例demo不需要调整
  admin:
    url: http://bpm-test.chinapost.com.cn/cpit-admin #参阅示例demo不需要调整
    username: xxxx #参阅示例demo不需要调整
    password: xxxx== #参阅示例demo不需要调整
  bpm:
    token:
        bussiness:
            header: X-Access-Upms-Token   #调整为业务平台本身token的key值

6.5 实现接口

实现SDK中BpmSystemService中相应的接口。

6.6 使用流程服务

接入系统,使用SDK提供的接口与流程中心交互。

信息.