注(version:5.15.1)

1.部署流程(定义流程)

1 InputStream in = new FileInputStream(file);
2 ZipInputStream zipInputStream = new ZipInputStream(in);
3 processEngine.this.getRepositoryService()
4              .createDeployment()
5              .name(processName)
6              .addZipInputStream(zipInputStream)
7              .deploy();
View Code

相关文章:

  • 2022-01-08
  • 2021-10-26
  • 2021-12-23
  • 2021-12-19
  • 2021-06-09
  • 2021-04-27
  • 2021-06-18
猜你喜欢
  • 2022-12-23
  • 2022-01-09
  • 2021-10-03
  • 2021-07-16
  • 2021-04-07
  • 2021-10-26
  • 2020-03-30
相关资源
相似解决方案