Reputation: 6349
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
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