Listener injected field not detected in spring boot app however working on spring framework

Hi All,

I have converted my spring framework process application to spring boot application. All the components are working except the listner injected field as below.

Following is the error message

23:57:19.457 [camundaTaskExecutor-1] ERROR org.camunda.bpm.engine.context - ENGINE-16004 Exception while closing command context: Field definition uses unexisting field ‘stage’ on class java.lang.String: field is null
org.camunda.bpm.engine.exception.NullValueException: Field definition uses unexisting field ‘stage’ on class java.lang.String: field is null
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at org.camunda.bpm.engine.impl.util.EnsureUtil.generateException(EnsureUtil.java:380)
at org.camunda.bpm.engine.impl.util.EnsureUtil.ensureNotNull(EnsureUtil.java:54)
at org.camunda.bpm.engine.impl.util.EnsureUtil.ensureNotNull(EnsureUtil.java:49)

your expression has to be ´${loggerDelegate}` , you missed the “$”

1 Like