Pramod Karandikar
Pramod Karandikar

Reputation: 5329

Implementing workflow using Spring

We are working on a Spring based web based application where we need to implement workflow. This is how a sample scenario looks like:

One way is to design the workflow based on database entries. Each user may be assigned one/more roles and workflow will involve these users.
Is there anything Spring offers that will suite my requirement? I have gone through this and this Spring documentation but could not understand fully.

Upvotes: 6

Views: 24010

Answers (3)

Ajey Dudhe
Ajey Dudhe

Reputation: 29

https://github.com/ajeydudhe/workflow-lite implements workflow using spring beans and spring expression language. This implementation is light weight and avoid the need to pass the data to activities through context object. You can directly inject the required data using spring expression language.

Upvotes: -1

Marco Luly
Marco Luly

Reputation: 403

Spring announced a new project: Spring Statemachine

Upvotes: 5

Kuntal-G
Kuntal-G

Reputation: 2991

Please go through the below tutorial.If you still required more help,i will share my code piece.As i have worked on Spring workflow project couple of months ago.My Project was similar to your requirement.

http://www.studytrails.com/frameworks/spring/spring-web-flow.jsp

http://www.javabeat.net/spring-web-flow-introduction/

Upvotes: 2

Related Questions