Is it possible to integrate camunda-bpm-spring-boot-starter-webapp & camunda-bpm-spring-boot-starter-rest into a spring boot reactive project?
I have tried to simply integrate the packages. But when running the project, I see that only the springMVC mode is activated and eliminates all routers defined in reactive mode. The spring MVC is launched with Tomcat. However the reactive mode is configured with netty (a non-servlet server). I tried to exclude Tomcat to rely only on netty but I don't see how could I configure a servlet for it. Or is there a possibility to coexist both modes?
I expect to be able to see camunda webapp and the application routes runnning together. What I have now is only one mode can be activated : If SpringMVC : webapp OK, Routes NOK If Reactive : webapp NOK, Routes OK