How to call a java class at task complete?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2017 04:18 AM
Hi Team,
I am using activiti in my spring web application. I need to call a java at task complete. Please let me know if you have an idea.
Thanks
Labels:
- Labels:
-
Alfresco Process Services
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2017 08:57 AM
Various options:
- If it is a user task: use the Task listener and execute your logic on task complete/
- Use an execution listener and execute logic on end event
- Execute your logic via a service task and configure the service task right after the user task
- use an event listener and execute your logic on task complete event.
Check Activiti User Guide for more details on all these options.
