Hi @sbuettner Team,
I am working on migration part. So my quick question is do I need to rewrite all my Java delegates to job worker.
As my understanding camunda-7-adapter is compatibility to run the Javadelegate . Is this my understanding is correct ?
In this case, as I removed all camunda engine dependency all my delegates giving compile time error. So how can I over come this.
Can someone give me some real time example for this migration scenario.
I m migrating from Camunda 7.19 (spring-boot) to 8.3 (spring boot)
JDK - 17
Hi @vinothkumar,
You don’t have to.
From my perspective, you should ask yourself, how much time do you want to spend with the migration project? How many changes in the project do you expect in the future?
If you expect some redesign in the future, it makes sense to spend some more time and wrap the business logic from the delegates into job workers, to get ready for the Camunda 8 future. If you already have a clean separation between process logic and business logic in the delegate code, this change should be straight forward, even if you have 20 or more Java Delegates.
If the process is stable since a long while, and you want to get ready with migration as soon as possible, the camunda-7-adapter helps you as you don’t have to change the delegate implementation.
Hope this helps, Ingo
Thanks a lot. Following the same @Ingo_Richtsmeier