You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 4, 2022. It is now read-only.
Hi,
I am unable to register the ReactorProcessEnginePlugin due to a missing default constructor.
It was added at some point in this commit and later removed (probably because of migration to using source eventbus)? #45
Error:
at org.camunda.bpm.engine.impl.util.EngineUtilLogger.exceptionWhileInstantiatingClass(EngineUtilLogger.java:78)
at org.camunda.bpm.engine.impl.util.ReflectUtil.instantiate(ReflectUtil.java:192)
at org.camunda.bpm.container.impl.deployment.StartProcessEngineStep.createInstance(StartProcessEngineStep.java:154)
at org.camunda.bpm.container.impl.deployment.StartProcessEngineStep.configurePlugins(StartProcessEngineStep.java:134)
at org.camunda.bpm.container.impl.deployment.StartProcessEngineStep.performOperationStep(StartProcessEngineStep.java:100)
at org.camunda.bpm.container.impl.spi.DeploymentOperation.execute(DeploymentOperation.java:116)
... 17 more
Caused by: java.lang.InstantiationException: org.camunda.bpm.extension.reactor.plugin.ReactorProcessEnginePlugin
at java.lang.Class.newInstance(Class.java:427)
at org.camunda.bpm.engine.impl.util.ReflectUtil.instantiate(ReflectUtil.java:189)
... 21 more
Caused by: java.lang.NoSuchMethodException: org.camunda.bpm.extension.reactor.plugin.ReactorProcessEnginePlugin.<init>()
at java.lang.Class.getConstructor0(Class.java:3082)
at java.lang.Class.newInstance(Class.java:412)
... 22 more
Using version: 2.1.2
Thanks!
The text was updated successfully, but these errors were encountered:
I get the problem ... so we should have a default constructor that internally creates a new instance of the bus and delegates to the current constructor. Easy.
But then you have to make sure, that your consumers use the same bus. So you must not create a new CamundaEventBus in your app but instead get the instance from the process engine configuration. That would work.
Hi,
I am unable to register the ReactorProcessEnginePlugin due to a missing default constructor.
It was added at some point in this commit and later removed (probably because of migration to using source eventbus)? #45
Error:
Using version: 2.1.2
Thanks!
The text was updated successfully, but these errors were encountered: