All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jbpm.springboot.samples.JBPMApplication Maven / Gradle / Ivy

There is a newer version: 7.74.1.Final
Show newest version
/*
 * Copyright 2017 Red Hat, Inc. and/or its affiliates.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.jbpm.springboot.samples;

import java.util.Collection;

import org.jbpm.kie.services.impl.KModuleDeploymentUnit;
import org.jbpm.services.api.DeploymentService;
import org.jbpm.services.api.ProcessService;
import org.jbpm.services.api.RuntimeDataService;
import org.jbpm.services.api.model.ProcessDefinition;
import org.kie.api.runtime.query.QueryContext;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;


@SpringBootApplication
public class JBPMApplication {
    
    private static final Logger LOGGER = LoggerFactory.getLogger(JBPMApplication.class);

    public static void main(String[] args) {
        SpringApplication.run(JBPMApplication.class, args);
    }
      
    @Bean
    CommandLineRunner deployAndValidate() {
        return new CommandLineRunner() {
            
            @Autowired            
            private DeploymentService deploymentService;
            
            @Autowired
            private RuntimeDataService runtimeDataService;
            
            @Autowired
            private ProcessService processService;
            
            @Override
            public void run(String... strings) throws Exception {                
                KModuleDeploymentUnit unit = null;
                if (strings.length > 0) {
                    String arg = strings[0];
                    LOGGER.info("About to deploy : {}", arg);
                    
                    String[] gav = arg.split(":");
                    
                    unit = new KModuleDeploymentUnit(gav[0], gav[1], gav[2]);
                    deploymentService.deploy(unit);
                    LOGGER.info("{} successfully deployed", arg);
                }
                LOGGER.info("Available processes:");
                Collection processes = runtimeDataService.getProcesses(new QueryContext());
                for (ProcessDefinition def : processes) {
                    LOGGER.info("\t{} (with id '{})", def.getName(), def.getId());
                }
                
                if (unit != null && !processes.isEmpty()) {
                    String processId = processes.iterator().next().getId();
                    LOGGER.info("About to start process with id {}", processId);
                    long processInstanceId = processService.startProcess(unit.getIdentifier(), processId);
                    LOGGER.info("Started instance of {} process with id {}", processId, processInstanceId);
                    
                    processService.abortProcessInstance(processInstanceId);
                    LOGGER.info("Aborted instance with id {}", processInstanceId);
                }
                LOGGER.info("========= Verification completed successfully =========");
            }
        };
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy