使用Maven集成Activiti Modeler

时间:2016-02-05 07:49:24

标签: maven activiti bpm bpmn

如何将Activiti Modeler集成到他们自己的Web应用程序中并保留Maven建议的所有优势?

探测器是Maven中的Activiti Modeler是Activiti Explorer的一部分。想要开发自己的Web应用程序的人在线有几个问题,使用Modeler编辑进程,但不需要其他Explorer功能。

例如,Activiti BPM without activiti-explorerHow To Integrate Activiti Modeller Into own Web Application

1 个答案:

答案 0 :(得分:2)

我已设法使用Maven叠加功能:

1)包括Explorer Web应用程序的叠加层,但仅包含Modeler文件:

的pom.xml:

    <dependency>
        <groupId>org.activiti</groupId>
        <artifactId>activiti-webapp-explorer2</artifactId>
        <version>${activiti-version}</version>
        <type>war</type>
        <scope>compile</scope>
    </dependency>
....
</dependencies>
<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-war-plugin</artifactId>
            <version>2.6</version>
            <configuration>
                <overlays>
                    <overlay>
                        <groupId>org.activiti</groupId>
                        <artifactId>activiti-webapp-explorer2</artifactId>
                        <includes>
                            <include>WEB-INF/classes/stencilset.json</include>   
                            <include>editor-app/**</include>   
                            <include>modeler.html</include>   
                        </includes>
                    </overlay>
                </overlays>
            </configuration>
        </plugin>

2)添加建模者Spring资源。它们用于检索和保存模型(注意:不是流程定义,它有点不同),也用于模板集:

    <dependency>
        <groupId>org.activiti</groupId>
        <artifactId>activiti-modeler</artifactId>
        <version>${activiti-version}</version>
    </dependency>

3)那将是它但它实际上不会在你的应用程序中工作,除非它被称为“activiti-explorer”。在项目中添加名为“editor-app / app-cfg.js”的文件,并在其中添加以下内容:

编辑应用内/ APP-cfg.js:

'use strict';
var ACTIVITI = ACTIVITI || {};
ACTIVITI.CONFIG = {
        'contextRoot' : window.location.pathname.substring(0,window.location.pathname.lastIndexOf('/')),
};

这实际上是本机app-cfg的副本,其中包含上下文根的奇怪“/ activiti-explorer / service”设置。我们将其更改为更通用的设置。它将用于从存储库中检索模型。我们的文件将覆盖浏览器webapp附带的文件。

注意:

a)您必须自己管理流程定义到模型的转换。有关想法,请参阅https://github.com/Activiti/Activiti/blob/activiti-5.19.0.1/modules/activiti-explorer/src/main/java/org/activiti/editor/ui/ConvertProcessDefinitionPopupWindow.java

b)我不得不避免使用一个Jackson Object Mapper,我还没有研究为什么这不起作用:

<bean id="objectMapper" class="com.fasterxml.jackson.databind.ObjectMapper">
</bean>    
<mvc:annotation-driven>
    <!-- using the same objectMapper leads to stencilset resource being served as string -->
    <mvc:message-converters register-defaults="true">
        <bean class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">
            <property name="objectMapper" ref="objectMapper"/>
        </bean>
    </mvc:message-converters>
</mvc:annotation-driven>

不要这样做或研究更多,因为这实际上打破了服务部分“活动建模者”的模板重建。它开始将stencilset作为格式错误的字符串而不是普通的json。

c)我不知道如何在Modeler保存功能中注入CSRF安全头,所以我将其关闭 - 如果您不使用Spring Security,请丢弃此