The configuration for implementing Embedded forms with spring boot application are done as below:
- Added the dependency camunda-bpm-spring-boot-starter-webapp in the pom.xml
- Added the annotation @EnableProcessApplication the main class.
- Created src/main/resources/META-INF/processes.xml as empty file.
- Created html forms inside src/main/resources/static/forms/FORM_NAME.html
- Configured the embedded form to the .bpmn file where formKey as embedded:deployment:FORM_NAME.html
While starting the application server, I got an error org.camunda.bpm.engine.ProcessEngineException:‘Parse processes.xml deployment descriptor files.’:Premature end of file.
What should I do now?