Hi,
I have a Springboot Camunda project and I am deploying its war file through camunda bpm wildfly 7.18 in local, and after deploying, wildfly is starting, but camunda url is saying 404 not found, I haven’t made any changes in the standalone.xml file, what can be done to resolved this?
Thanks.
Hi, @StephanHaarmann , could you provide any insight on this issue?
Thanks!
Hi @ThomasShelby,
The Camunda Spring Boot distro doesn’t work on the Camunda Wildfly distro.
You can start the Spring Boot application just with java -jar mySpringBoot.jar
.
I have heard from a customer, that they managed to run the embedded engine wrapped in Spring Boot application on a vanilla Wildfly, but they had to do some changes to the build and I didn’t get the all the details.
What I remembered: The application must be packed as a war file, it has to include all the JavaEE deployment descriptors (web.xml, …) and maybe more.
Hope this helps, Ingo
Hi @Ingo_Richtsmeier ,
Previously I was able to run the same project on Wildlfy, and as u mentioned another example, I am also packing the project as a war file, and have the pom.xml file and all the other necessary data in the project. But since I haven’t changed anything , I am not able to figure out why it is not working now.
Thanks!