Hello everyone,
I am using camunda 7 spring boot distribution. I included the maven dependency camunda-bpm-spring-boot-starter-webapp , excluded camunda-webapp-webjar and created a custom webapp-webjar that I mvn clean install and include as a dependency in the spring-boot project.
The changes to the ui actually exist and it works mostly fine, but the expected behavior we had on tomcat beforehand was for the welcome page to open upon accessing http://localhost:/camunda
from what I can tell the default behavior of the spring application is to navigate the browser to the tasklist upon accessing /camunda.
I tried index-redirect-enabled: true , which upon accessing http://localhost sent me to the welcome page but /camunda was still directing to the tasklist.
Is there a way to change the default behavior and map the default webapp to the welcome page ?