本文整理匯總了Java中org.jbpm.services.api.model.DeploymentUnit類的典型用法代碼示例。如果您正苦於以下問題:Java DeploymentUnit類的具體用法?Java DeploymentUnit怎麽用?Java DeploymentUnit使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
DeploymentUnit類屬於org.jbpm.services.api.model包,在下文中一共展示了DeploymentUnit類的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: init
import org.jbpm.services.api.model.DeploymentUnit; //導入依賴的package包/類
@PostConstruct
public void init(){
String[] gav = DEPLOYMENT_ID.split(":");
DeploymentUnit deploymentUnit = new KModuleDeploymentUnit(gav[0], gav[1], gav[2]);
if(deploymentService.isDeployed(deploymentUnit.getIdentifier()))
{
deploymentService.undeploy(deploymentUnit);
}
deploymentService.deploy(deploymentUnit);
// DeployedUnit deployed = deploymentService.getDeployedUnit(deploymentUnit.getIdentifier());
// RuntimeManager manager = deployed.getRuntimeManager();
// System.out.print("This is test");
}
示例2: init
import org.jbpm.services.api.model.DeploymentUnit; //導入依賴的package包/類
@PostConstruct
public void init() {
String[] gav = PROCESSES_DEPLOYMENT_ID.split(":");
DeploymentUnit deploymentUnit = new KModuleDeploymentUnit(gav[0], gav[1], gav[2]);
deploymentService.deploy(deploymentUnit);
}
示例3: init
import org.jbpm.services.api.model.DeploymentUnit; //導入依賴的package包/類
@PostConstruct
public void init() {
System.setProperty("org.jbpm.ht.callback", "custom");
System.setProperty("org.jbpm.ht.custom.callback", "org.jbpm.examples.util.RewardsUserGroupCallback");
String[] gav = DEPLOYMENT_ID.split(":");
DeploymentUnit deploymentUnit = new KModuleDeploymentUnit(gav[0], gav[1], gav[2]);
deploymentService.deploy(deploymentUnit);
}
示例4: init
import org.jbpm.services.api.model.DeploymentUnit; //導入依賴的package包/類
@PostConstruct
public void init() {
String[] gav = DEPLOYMENT_ID.split(":");
DeploymentUnit deploymentUnit = new KModuleDeploymentUnit(gav[0], gav[1], gav[2]);
deploymentService.deploy(deploymentUnit);
}