Activiti – are you ready for BPMN 2.0?

From the beginning of this year I got quite involved in project called Activiti. It’s a “light-weight workflow and Business Process Management (BPM) Platform” (according to creators. The project is led by JBPM creators – Tom Bayens and Joram Barrez and is backed by Alfresco and several other companies. I also contributed some small features :) Activiti has already made some noise in BPM world – check thisthisor this, and of course InfoQ.
So, what’s the fuss all about? What makes Activiti special? Of course – it depends what are you comparing it with. My experience involves mainly working with open source BPEL implementation, but I think some points remain valid.

So, here is my list of distinctive features:

BPMN 2.0 support I took quite a lot of time for this spec to arrive, but it’s finally here. The biggest step ahead comparing with BPMN 1.x is execution model – no more BPEL, you can use the same diagram for modelling and execution, and it has proper xsd schema! Of course, it won’t solve all round-trip headaches, but I think it’s quite important improvement. XML describing BPMN 2.0 process consists of nodes definitions and transition definitions: Activiti is one of the first BPM engines offering BPMN 2.0 support. Currently not all nodes are supported, but the list includes:
* exclusive and paralell gateways  

  • timer boundary and intermediate events (timer start event almost ready)    

  • various tasks: script, user, service, manual, rules, receive    

  • error events and handling them    

  • subprocesses (both embedded or not)     Not all of these nodes are fully defined in spec – e.g. it does not describe how service task invocation should look like. Therefore, Activiti comes with a set of custom extensions. They are meant to be as non-intrusive as possible – to make processes more portable. One of most commonly used are ones for describing service task behaviour: Another useful extension enables to associate html form and candidate user with user task: One of nice features of BPMN 2.0 is also providing xml schema for describing process diagram – aka Diagram Interchange. This enables good engines (such as Activiti ;)) to generate process diagram just on the basis of xml definition – which makes importing processes modelled in some external tool much easier. It looks like this: Maybe not too beautiful, but usable.

Goal of supporting full BPM cycle

Do you (still) believe that future tools for creating business processes will allow users to get rid of developers? I do not… Unless of course, business people will learn how to code ;) Otherwise what we’ll be left with are some nice zero-coding tools which look great on 15minutes (or event 2hours if they’re exprensive enough) but after running into real-life problems will demand extensive hacking.
Activiti pursues different goal, and proposes developing process cycle layer. Key points of this proposition are:

  • zero coding solutions won’t work
  • analysts are needed to model the process, developers are needed to create executable processes, and operations are needed to deploy and monitor them
  • each of these groups have their own set of tools which they’re familiar with
  • so let’s not reinvent the wheel but encourage them to collaborate but use their set of tools

So, how to achieve this? By creating another web application, of course ;) It’s name is Activiti Cycle and it’s meant to encourage collaboration between business, developers and operations, while allowing each of them to use their own, specific tools in their daily job. It’s more like a federated repository of BPM assets, such as Visio Diagrams, BPMN process definitions, maven process projects, deployment packages and so on. These artifacts can be linked, commented and tracked by various process stakeholders and also transformed.

Easy to embed and extend, also by quasi-REST API

One of biggest pains of BPEL based solutions is that they force you to integrate with the rest of you app using webservices. Fortunately, this is no longer the case. You can embed activiti engine in your (for example) Spring application just by importing few jars and configuring it as any other Spring component:
This is of course great for running processes that handle some Java tasks. What about user tasks? Activiti comes with decent webapps for handling human tasks and monitoring process state: Activiti Explorer – screens shows the list of tasks for a given user:  

Activiti Probe – screen shows monitoring process instance:  

But what if you want to/have to use some other frontend technology? Webapps that I mentioned before are really thin clients – all logic is hidden behind Activiti’s quasi-REST API (I use the word quasi not to be beaten by RESTafarians who will surely point out that Activiti API is just RPC over HTTP…). That means you can embed Activiti in you webapps/OSGi container/any other environment and integrate with frontend webapps using handy JSON/HTTP communication. Which looks more or less like this:

Using (defacto) standards When you create application using Activiti chances are high that you know many (if not all) building blocks & techniques:

  • development? Eclipse plugin & maven
  • connecting components together? you can choose: spring or (for JEE6 lovers) CDI
  • testing? just do your normal TDD (you do it, right? ;)) using Activiti JUnit testing utils

Eclipse plugin includes visual modeler, which enables you to draw executable BPMN 2.0 processes, and fill all needed properties:

It uses Diagram Interchange format, so process diagram layout will remain the same when displaying process diagram in other applications. Testing is also pretty easy, as Activiti comes with good JUnit support. One of small, but important features is ability to simulate the clock – very handy when dealing with long running tasks.

Good integration capabilities

Activiti comes with capabilities allowing for integration with three most popular open source integration frameworks:

  • Mule ESB – integration is written by MuleSoft
  • SpringIntegration, contributed by SpringSource
  • last but cetainly not least: Apache Camel – which is contributed by TouK ;) – it’s still work in progress, but I hope to write a blog post soon about integrating Camel & Activiti

This allows to build processes that are closer to orchestration than simple workflows, containing only (or mostly) human tasks. Each of these integration frameworks comes with a vast collection of adapters using all popular (and not so popular) communication protocols. This allows process engine to concentrate on the process, and not on the communication details.

Summary I think it’s quite impressive set of features for a product that is less than year old. And what are Activiti plans for the future? Tom Bayens recently announced that Activiti is going to support some sort of Adaptive Case Management – which is one of top buzzwords in process world. Other goals include:

  • asynchronous continuations
  • moving towards full support of BPMN 2.0
  • extending Activiti Cycle – check Bernd’s Ruecker screencast showing Activiti Cycle approach to handling collaboration between analysts, developers and admins – it’s quite impressive

As for me, I’m finishing adding support for start timer tasks and hope to post something on Activiti-Camel intergration and running Activiti in OSGi environment soon – especially Apache Servicemix – so stay tuned. If you’ve found Activiti interesting, please start with 10 minutes 

Getting started guide, and if you know Polish, you can also have a look at my slides from Warsaw JUG presentation Thanks for reading my first post on this blog – hope you liked it.

You May Also Like

Tomcat: Problemy z requestami zawierającymi polskie znaki diakrytyczne


Jeśli jest problem z pobieraniem plików z polskimi znakami diakrytycznymi, to trzeba dopisać kodowanie do connectora w tomcat/conf/server.xml

URIEncoding="UTF-8"

Typowa konfiguracja connectora będzie wyglądała tak

<Connector port="8080" protocol="HTTP/1.1"
               connectionTimeout="20000"
               redirectPort="8443" URIEncoding="UTF-8" />

Sample for lift-ng: Micro-burn 1.0.0 released

During a last few evenings in my free time I've worked on mini-application called micro-burn. The idea of it appear from work with Agile Jira in our commercial project. This is a great tool for agile projects management. It has inline tasks edition, drag & drop board, reports and many more, but it also have a few drawbacks that turn down our team motivation.

Motivation

From time to time our sprints scope is changing. It is not a big deal because we are trying to be agile :-) but Jira's burndowchart in this situation draw a peek. Because in fact that chart shows scope changes not a real burndown. It means, that chart cannot break down an x-axis if we really do more than we were planned – it always stop on at most zero.

Also for better progress monitoring we've started to split our user stories to technical tasks and estimating them. Original burndowchart doesn't show points from technical tasks. I can find motivation of this – user story almost finished isn't finished at all until user can use it. But in the other hand, if we know which tasks is problematic we can do some teamwork to move it on.

So I realize that it is a good opportunity to try some new approaches and tools.

Tools

I've started with lift framework. In the World of Single Page Applications, this framework has more than simple interface for serving REST services. It comes with awesome Comet support. Comet is a replacement for WebSockets that run on all browsers. It supports long polling and transparent fallback to short polling if limit of client connections exceed. In backend you can handle pushes in CometActor. For further reading take a look at Roundtrip promises

But lift framework is also a kind of framework of frameworks. You can handle own abstraction of CometActors and push to client javascript that shorten up your way from server to client. So it was the trigger for author of lift-ng to make a lift with Angular integration that is build on top of lift. It provides AngularActors from which you can emit/broadcast events to scope of controller. NgModelBinders that synchronize your backend model with client scope in a few lines! I've used them to send project state (all sprints and thier details) to client and notify him about scrum board changes. My actor doing all of this hard work looks pretty small:

Lift-ng also provides factories for creating of Angular services. Services could respond with futures that are transformed to Angular promises in-fly. This is all what was need to serve sprint history:

And on the client side - use of service:


In my opinion this two frameworks gives a huge boost in developing of web applications. You have the power of strongly typing with Scala, you can design your domain on Actors and all of this with simplicity of node.js – lack of json trasforming boilerplate and dynamic application reload.

DDD + Event Sourcing

I've also tried a few fresh approaches to DDD. I've organize domain objects in actors. There are SprintActors with encapsulate sprint aggregate root. Task changes are stored as events which are computed as a difference between two boards states. When it should be provided a history of sprint, next board states are computed from initial state and sequence of events. So I realize that the best way to keep this kind of event sourcing approach tested is to make random tests. This is a test doing random changes at board, calculating events and checking if initial state + events is equals to previously created state:



First look

Screenshot of first version:


If you want to look at this closer, check the source code or download ready to run fatjar on github.During a last few evenings in my free time I've worked on mini-application called micro-burn. The idea of it appear from work with Agile Jira in our commercial project. This is a great tool for agile projects management. It has inline tasks edition, drag & drop board, reports and many more, but it also have a few drawbacks that turn down our team motivation.