Use SpEL expressions in bpmn file

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

SpEL is not supported, no. However, you can expose any bean you want in an expression. In a Spring Boot + Flowable env for example, the environment bean will give you direct access to your properties.