Hi,
Can we use SpEl expressions in bpmn file?
I want to use Spring boot properties in order to set the requestUrl in an http task:
I currently created a bean that read the Spring properties and I call this bean like this:
<flowable:field name="requestUrl">
<flowable:expression><![CDATA[${propertyProviderBean.documentModelUrl}]]>
</flowable:expression>
</flowable:field>
However is there a way to use the spring properties directly?
Thanks,
Michel