org.jboss.arquillian.container.spi.client.deployment.Deployment.deployed()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(3.7k)|赞(0)|评价(0)|浏览(141)

本文整理了Java中org.jboss.arquillian.container.spi.client.deployment.Deployment.deployed()方法的一些代码示例,展示了Deployment.deployed()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Deployment.deployed()方法的具体详情如下:
包路径:org.jboss.arquillian.container.spi.client.deployment.Deployment
类名称:Deployment
方法名:deployed

Deployment.deployed介绍

暂无

代码示例

代码示例来源:origin: arquillian/arquillian-core

@Override
  public Void call() throws Exception {
    DeployableContainer<?> deployableContainer = event.getDeployableContainer();
    Deployment deployment = event.getDeployment();
    DeploymentDescription deploymentDescription = deployment.getDescription();
  
  /*
   * TODO: should the DeploymentDescription producer some how be automatically registered ?
   * Or should we just 'know' who is the first one to create the context
   */
    deploymentDescriptionProducer.set(deploymentDescription);
    deploymentProducer.set(deployment);
    deployEvent.fire(new BeforeDeploy(deployableContainer, deploymentDescription));
    try {
      if (deploymentDescription.isArchiveDeployment()) {
        protocolMetadata.set(deployableContainer.deploy(
          deploymentDescription.getTestableArchive() != null
            ? deploymentDescription.getTestableArchive() : deploymentDescription.getArchive()));
      } else {
        deployableContainer.deploy(deploymentDescription.getDescriptor());
      }
      deployment.deployed();
    } catch (Exception e) {
      deployment.deployedWithError(e);
      throw e;
    }
    deployEvent.fire(new AfterDeploy(deployableContainer, deploymentDescription));
    return null;
  }
});

代码示例来源:origin: arquillian/arquillian-core

scenario.deployment(new DeploymentTargetDescription(DEPLOYMENT_1_NAME)).deployed();
scenario.deployment(new DeploymentTargetDescription(DEPLOYMENT_2_NAME)).deployed();
scenario.deployment(new DeploymentTargetDescription(DEPLOYMENT_3_NAME)).deployed();
scenario.deployment(new DeploymentTargetDescription(DEPLOYMENT_4_NAME)).deployed();

代码示例来源:origin: org.jboss.arquillian.container/arquillian-container-impl-base

@Override
  public Void call() throws Exception {
    DeployableContainer<?> deployableContainer = event.getDeployableContainer();
    Deployment deployment = event.getDeployment();
    DeploymentDescription deploymentDescription = deployment.getDescription();
  
  /*
   * TODO: should the DeploymentDescription producer some how be automatically registered ?
   * Or should we just 'know' who is the first one to create the context
   */
    deploymentDescriptionProducer.set(deploymentDescription);
    deploymentProducer.set(deployment);
    deployEvent.fire(new BeforeDeploy(deployableContainer, deploymentDescription));
    try {
      if (deploymentDescription.isArchiveDeployment()) {
        protocolMetadata.set(deployableContainer.deploy(
          deploymentDescription.getTestableArchive() != null
            ? deploymentDescription.getTestableArchive() : deploymentDescription.getArchive()));
      } else {
        deployableContainer.deploy(deploymentDescription.getDescriptor());
      }
      deployment.deployed();
    } catch (Exception e) {
      deployment.deployedWithError(e);
      throw e;
    }
    deployEvent.fire(new AfterDeploy(deployableContainer, deploymentDescription));
    return null;
  }
});

代码示例来源:origin: arquillian/arquillian-core

private void setupAndExecuteUnDeployment(String containerName, boolean managed) {
  DeploymentDescription description = createDeploymentDescription(containerName)
    .shouldBeManaged(managed);
  scenario.get().addDeployment(description);
  controller.get().start(containerName);
  scenario.get().deployment(new DeploymentTargetDescription(DEPLOYMENT_NAME)).deployed();
  controller.get().stop(containerName);
}

代码示例来源:origin: org.jboss.arquillian.container/arquillian-container-test-impl-base

private void setupAndExecuteUnDeployment(String containerName, boolean managed) {
  DeploymentDescription description = createDeploymentDescription(containerName)
    .shouldBeManaged(managed);
  scenario.get().addDeployment(description);
  controller.get().start(containerName);
  scenario.get().deployment(new DeploymentTargetDescription(DEPLOYMENT_NAME)).deployed();
  controller.get().stop(containerName);
}

相关文章