To enable the Web Applications you can use the following starter in your pom.xml:

  1. <dependency>
  2. <groupId>org.camunda.bpm.springboot</groupId>
  3. <artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId>
  4. <version>{project-version}</version>
  5. </dependency>

By default, the starter registers a controller to redirect / to Camunda’s bundled index.html.To disable this, you have to add to your application properties:

  1. camunda.bpm.webapp.index-redirect-enabled=false

Enterprise webapps

To use the enterprise Web applications, include another starter:

  1. <dependency>
  2. <groupId>org.camunda.bpm.springboot</groupId>
  3. <artifactId>camunda-bpm-spring-boot-starter-webapp-ee</artifactId>
  4. <version>{project-version}</version>
  5. </dependency>

Also don’t forget to define the appropriate Camunda engine version (with “ee” suffix): see Overriding Camunda version.

If you are using the enterprise edition, you can also use the camunda.bpm.license-file property to provide a license file that is inserted on application start. Or copy your license file under the name camunda-license.txt to your src/main/resources.

原文: https://docs.camunda.org/manual/7.9/user-guide/spring-boot-integration/webapps/