Embedded task forms when using Spring Boot

I’m trying to work out how exactly to do this, it appears like it is possible based on the following:

Formkey - resolve embedded:app: fails with spring-boot and the github issue links seem to show this as resolved.

How ever I just get an endless loading spinner when using embedded:app:forms/test_form.html as the formKey and having created src/main/resources/forms/test_form.html my boot app does extend SpringBootProcessApplication

Any ideas what I am doing wrong?

Spring looks for web resources under src/main/resources/static

so create the intermediate folder staticand it should work

If you have to package your springboot project as war then forms will work nicely… you can keep forms in main/webapp/*.html… In your pom.xml, just set war after project artifactId tag.

Any resolution on this?