Reputation: 3748
i am new to jbpm. i am trying to run this github application on my eclipse workspace.
i upgraded jbpm version from 5.4.0-Snapshot
to 5.4.0.Final
and getting errors like:
In TaskServiceSetup.java file transactionManager cannot be resolved to a variable.
and SyncWSHumanTaskHandler
is deprecated, what is the alternative to this class?
Upvotes: 1
Views: 111
Reputation: 69440
First transactionManager
is never declared in your class.
Second use GenericHTWorkItemHandler
instead of the deprecated SyncWSHumanTaskHandler
Upvotes: 1