91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Activiti工作流從入門到入土:整合spring

發布時間:2020-05-31 03:41:29 來源:網絡 閱讀:460 作者:歐陽思海 欄目:編程語言

文章源碼托管:https://github.com/OUYANGSIHAI/Activiti-learninig
歡迎 star !!!

一、前言

在上一節中,通過一個入門程序,把activiti的環境準備好了,這一節,將整合spring,并且部署一個最簡單的bpmn流程圖。

二、環境準備

這一節的內容在上一節入門程序的基礎上進行環境配置,如果需要完整的配置文件,請到上一節查看。

2.1 spring配置

首先,需要添加spring的配置文件

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:tx="http://www.springframework.org/schema/tx" xmlns="http://www.springframework.org/schema/beans"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd     http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">

    <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="ignoreUnresolvablePlaceholders" value="true"/>
        <property name="locations">
            <list>
                <value>classpath:settings.properties</value>
            </list>
        </property>
    </bean>

    <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource" init-method="init" destroy-method="close">
        <property name="driverClassName" value="${db.driverClassName}"/>
        <property name="url" value="${db.url}"/>
        <property name="username" value="${db.username}"/>
        <property name="password" value="${db.password}"/>
        <property name="initialSize" value="3"/>
        <property name="minIdle" value="3"/>
        <property name="maxActive" value="20"/>
        <property name="maxWait" value="60000"/>
        <property name="filters" value="stat,wall"/>
    </bean>

    <!-- tx -->
    <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" ref="dataSource"/>
    </bean>

    <tx:annotation-driven transaction-manager="transactionManager"/>

    <!-- druid -->
    <bean id="stat-filter" class="com.alibaba.druid.filter.stat.StatFilter">
        <property name="slowSqlMillis" value="3000"/>
        <property name="logSlowSql" value="true"/>
        <property name="mergeSql" value="true"/>
    </bean>
    <bean id="wall-filter" class="com.alibaba.druid.wall.WallFilter">
        <property name="dbType" value="mysql"/>
    </bean>

</beans>
2.2 數據庫等環境配置文件

然后,添加數據庫等環境配置文件

db.driverClassName=com.mysql.jdbc.Driver
db.url=jdbc:mysql://localhost:3306/activitiTest?useUnicode=true&characterEncoding=UTF-8
db.username=root
db.password=root

到目前為止,就把spring的配置環境搭建好了,接下來,我們需要加入activiti的整合環境的配置了。

2.3 spring整合activiti

這一步,我們加入spring整合activiti環境的配置

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:p="http://www.springframework.org/schema/p"
       xmlns="http://www.springframework.org/schema/beans"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">

    <!-- 配置流程引擎配置信息對象 -->
    <bean id="processEngineConfiguration" class="org.activiti.spring.SpringProcessEngineConfiguration"
          p:dataSource-ref="dataSource"
          p:transactionManager-ref="transactionManager"
          p:databaseSchemaUpdate="true"
          p:jobExecutorActivate="false"
          p:databaseType="mysql"
          p:activityFontName="宋體"
          p:labelFontName="黑體"
          p:xmlEncoding="utf-8"/>

    <!-- 配置流程引擎 -->
    <bean id="processEngine" class="org.activiti.spring.ProcessEngineFactoryBean"
          p:processEngineConfiguration-ref="processEngineConfiguration"/>

    <!-- 配置六個服務Bean -->
    <bean id="repositoryService" factory-bean="processEngine"
          factory-method="getRepositoryService"/>
    <bean id="runtimeService" factory-bean="processEngine"
          factory-method="getRuntimeService"/>
    <bean id="taskService" factory-bean="processEngine"
          factory-method="getTaskService"/>
    <bean id="historyService" factory-bean="processEngine"
          factory-method="getHistoryService"/>
    <bean id="formService" factory-bean="processEngine"
          factory-method="getFormService"/>
    <bean id="identityService" factory-bean="processEngine"
          factory-method="getIdentityService"/>

</beans>

到2.3這一步,spring整合activiti的環境就配置好了,接下來,我們創建一個簡單的bpmn文件,然后,做一個簡單的測試,部署bpmn文件。

三、部署實例

3.1 繪制

打開idea的bpmn編輯器,繪制一個簡單的bpmn文件,如下
Activiti工作流從入門到入土:整合spring

注意: 用idea編輯的時候,是不會和eclipse一樣會自動的生成png文件的,這里有兩種方式解決。

方式一

用eclipse打開編輯,會自動生成,這個簡單,這里就不多說了。

方式二

bpmn后綴改為xml
Activiti工作流從入門到入土:整合spring

右鍵xml文件,找到下面的按鍵
Activiti工作流從入門到入土:整合spring

出現下面的界面
Activiti工作流從入門到入土:整合spring

右鍵,選擇export to file
Activiti工作流從入門到入土:整合spring

生成如下
Activiti工作流從入門到入土:整合spring

最后將xml后綴改為bpmn

3.2 測試

通過上面的介紹,繪制了bpmn文件png圖片,下面寫一個測試實例,部署流程。

/**
 * @Author 歐陽思海
 * @Description 部署
 * @Date 16:24 2019/1/26
 * @Param
 * @return
 **/
@RunWith(SpringJUnit4Cla***unner.class)
@ContextConfiguration(locations = {
        "classpath:applicationContext-core.xml",
        "classpath:applicationContext-activiti.xml"
})
@Slf4j
public class test02_spring {

    @Autowired
    private ProcessEngine processEngine;
    @Autowired
    private TaskService taskService;
    @Autowired
    private RuntimeService runtimeService;
    @Autowired
    private HistoryService historyService;

    /**
     * @return void
     * @Author 歐陽思海
     * @Description 部署流程實例
     * @Date 16:17 2018/12/19
     * @Param []
     **/
    @Test
    public void testTask() throws Exception {
        // 1 發布流程
        InputStream inputStreamBpmn = this.getClass().getResourceAsStream("/bpmn/test_01.xml");
        InputStream inputStreamPng = this.getClass().getResourceAsStream("/bpmn/test_01.png");
        processEngine.getRepositoryService()
                .createDeployment()
                .addInputStream("test_01.xml", inputStreamBpmn)
                .addInputStream("test_01.png", inputStreamPng)
                .deploy();

        ProcessInstance pi = processEngine.getRuntimeService()//
                .startProcessInstanceByKey("test_01");
        System.out.println("pid:" + pi.getId());
    }
}

注意上面的test_01是你的bpmn文件的id

3.3 測試結果

Activiti工作流從入門到入土:整合spring

四、總結

這一節通過整合spring,繪制簡單的bpmn文件,然后成功部署了bpmn文件。下一節,將講解activit的API

文章有不當之處,歡迎指正,如果喜歡微信閱讀,你也可以關注我的微信公眾號好好學java,獲取優質學習資源。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

扎囊县| 名山县| 石首市| 绥芬河市| 星子县| 凌源市| 晋州市| 长顺县| 崇阳县| 来安县| 左云县| 班戈县| 茶陵县| 黑龙江省| 玉龙| 介休市| 阜康市| 广丰县| 楚雄市| 同江市| 临高县| 石棉县| 吉木乃县| 乐清市| 乐陵市| 纳雍县| 东乌| 迁安市| 绥化市| 临猗县| 景泰县| 湾仔区| 勐海县| 万山特区| 江陵县| 葫芦岛市| 大港区| 涟源市| 湘潭市| 巴林右旗| 玉溪市|