根据id查询部署到数据库中的act_re_deployment流程表

/**
 * 查询部署列表
 */
@Test
public void test05() {
    //查询部署对象,查询的是act_re_deployment这个表
    DeploymentQuery query = defaultProcessEngine.getRepositoryService().createDeploymentQuery();
    List<Deployment> list = query.list();
    //增强for循环简写 iter
    for (Deployment deployment : list) {
        String id = deployment.getId();
        System.out.println(id);
    }

2019最新Activiti6.0查询部署表

相关文章:

  • 2022-01-21
  • 2022-12-23
  • 2021-10-30
  • 2021-12-02
  • 2021-06-04
  • 2021-05-29
  • 2021-09-23
  • 2022-12-23
猜你喜欢
  • 2021-08-31
  • 2021-05-09
  • 2021-10-05
  • 2022-12-23
  • 2022-01-11
  • 2021-11-17
相关资源
相似解决方案