首页 > 数据库技术 > 详细

工作流-数据库生成

时间:2018-01-15 19:28:24      阅读:213      评论:0      收藏:0      [点我收藏+]
/**
 * 数据库生成的代码  (只做一遍)
 * @author Administrator
 *
 */
public class Test01 {
    public static void main(String[] args) {
        // 定义配置文件
        String resource = "activiti.cfg.xml";
        // 读取配置文件
        ProcessEngineConfiguration config = ProcessEngineConfiguration
                .createProcessEngineConfigurationFromResource(resource);

        // 生成工作流引擎
        ProcessEngine processEngine = config.buildProcessEngine();

        System.out.println(processEngine);
    }
}

 

工作流-数据库生成

原文:https://www.cnblogs.com/yoyo198212/p/8289308.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!