Embedded forms not found with Spring Boot 2.1

We have a Camunda engine running as a Spring Boot application.
This engine has a runtime dependency to a Jar file which contains the bpmn-files and static HTML forms.
Some processes use these forms as embedded forms.

The structure of the project containing the processes is:
/src/main/java - empty
/src/main/recources
-------------------/...several bpmn-files
-------------------/META-INF/processes.xml
-------------------/static
--------------------------/...several html-forms

With Spring Boot 2.0 everything worked fine, but with Spring Boot 2.1 the forms are not found when starting the processes (i.e. via the Cockpit tasklist) (Form failure: Unsuccessful HTTP response)

Any idea why Spring Boot 2.1 behaves different from Spring Boot 2.0? What can I do to make this work again?

Does your project satisfy the compatibility matrix?
https://docs.camunda.org/manual/latest/user-guide/spring-boot-integration/version-compatibility/

Hi,

you might want to have a look at this post:

Best,
Tobias

1 Like

https://jira.camunda.com/browse/CAM-10187
It is fixed in our Camunda Spring Boot Starters 3.2.8 , 3.3.6 and 3.4.0 .

YES, this solved my problem (switching to 3.2.8)
Thank you!
Chris