<?xml version="1.0" encoding="UTF-8"?>
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
xsi:schemaLocation="
|
|
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.1.xsd">
|
|
<context:component-scan
|
base-package="org.activiti.conf,org.activiti.rest.editor">
|
<context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
|
</context:component-scan>
|
|
<!-- 单例json对象 -->
|
<bean id="objectMapper" class="com.fasterxml.jackson.databind.ObjectMapper"/>
|
|
<!-- 引擎内部提供的UUID生成器,依赖fastxml的java-uuid-generator模块 -->
|
<bean id="uuidGenerator" class="org.activiti.engine.impl.persistence.StrongUuidGenerator" />
|
|
<!-- Activiti begin -->
|
<bean id="processEngineConfiguration" class="org.activiti.spring.SpringProcessEngineConfiguration">
|
<property name="dataSource" ref="dataSource"/>
|
<property name="transactionManager" ref="transactionManager"/>
|
<property name="databaseSchemaUpdate" value="true"/>
|
<property name="jobExecutorActivate" value="true"/>
|
</bean>
|
|
<bean id="processEngine" class="org.activiti.spring.ProcessEngineFactoryBean">
|
<property name="processEngineConfiguration" ref="processEngineConfiguration"/>
|
</bean>
|
|
<!-- 7大接口 -->
|
<bean id="repositoryService" factory-bean="processEngine" factory-method="getRepositoryService"/>
|
<bean id="runtimeService" factory-bean="processEngine" factory-method="getRuntimeService"/>
|
<bean id="formService" factory-bean="processEngine" factory-method="getFormService"/>
|
<bean id="identityService" factory-bean="processEngine" factory-method="getIdentityService"/>
|
<bean id="taskService" factory-bean="processEngine" factory-method="getTaskService"/>
|
<bean id="historyService" factory-bean="processEngine" factory-method="getHistoryService"/>
|
<bean id="managementService" factory-bean="processEngine" factory-method="getManagementService"/>
|
|
</beans>
|