Vaadin framework and Spring MVC in one web application

I am looking for any ideas or PoC on how to integrate (specifically configure) Spring MVC and Vaadin (Framework 8) in one web application; preferably as a context hierarchy.

The use case is the Vaadin servlet as the root context “/” and the Spring MVC servlet on some other context “/m” (which will be used for server mobile-friendly views).

I have not been able to find any examples, partial or fully, that shows how this is achieved in the configuration (Spring Boot) and I’m constantly running into various problems with invalid context loading, unmapped MVC view references etc. depending on the examples I’m running.

I’ve looked into this from the perspective of this line in the
Vaadin documentation
, but have simply not found anything on these topics I can combine to make a solution.

“It is possible to map both DispatcherServlet and SpringVaadinServlet to different context paths to use both simultaneously to e.g. support Spring MVC and Vaadin in the same application. If doing so, remember to also map the path “/VAADIN/*” to the Vaadin servlet for serving static resources.”

looking for the same info…have you solved?