zoukankan      html  css  js  c++  java
  • activiti-explorer 启动报错 Error creating bean with name 'demoDataConfiguration'

    来源:http://blog.csdn.net/huangning2/article/details/9247099

    Activiti database setup

    As said in the one minute demo setup, the Activiti Explorer runs an in-memory H2 database by default. To run the Activiti Explorer with a standalone H2 or another database the db.properties in the WEB-INF/classes of the Activiti Explorer web application should be changed.

    In addition, be aware that the Activiti Explorer generates demo user and groups, process definitions and models by default. To disable this, the activiti-standalone-context.xml file in the WEB-INF folder should be changed. To disable the demo setup fully you can use the following snippet of the demoDataGenerator bean definition. But as you can see you can also enable and disable items individually.

          <bean id="demoDataGenerator" class="org.activiti.explorer.demo.DemoDataGenerator">
            <property name="processEngine" ref="processEngine" />
            <property name="createDemoUsersAndGroups" value="false" />
            <property name="createDemoProcessDefinitions" value="false" />
            <property name="createDemoModels" value="false" />
          </bean>
  • 相关阅读:
    YTU 2543: 数字整除
    YTU 2542: 弟弟的作业
    YTU 2541: 汽水瓶
    YTU 2535: C++复数运算符重载(+与<<)
    YTU 2530: 小勇玩lol
    YTU 2520: 小慧唱卡拉OK
    YTU 2517: 打倒魔王↖(^ω^)↗
    YTU 2516: 剪刀石头布
    reload、replace、href、assign、window.history.go(0)的区别
    js 数组排序sort方法
  • 原文地址:https://www.cnblogs.com/rgqancy/p/7884693.html
Copyright © 2011-2022 走看看