Labeo
Labeo

Reputation: 6349

Can we integrate activiti to an excisting spring(java) application

I am having a spring(java) application running on tomcat server, i want a work flow process of creating a ticket and maintain ticket status as it progresses and give permission to write(update) data of the ticket depending on the status of the ticket and the role of the user(i will give roles like admin and user thats it).

Can i achieve it with Activiti ?

Upvotes: 0

Views: 81

Answers (1)

Greg Harley
Greg Harley

Reputation: 3240

Absolutely you can. In the words of Joram Barrez (Activiti Architect), Activiti is really just a jar. Well, he understated it a little, it's a jar and a database. But either way, it is really easy to integrate Activiti into any existing Java app. Check out the following link from the users guide to show you how to setup the Process Engine factory and associated beans in your spring configuration.

Upvotes: 1

Related Questions