Vaadin Servlet Auto-Loading
When a project defines no @WebServlet
, how come that VaadinServlet
gets loaded automatically?
Without automatic loading of VaadinServlet
there would be no servlet to handle
requests, and Jetty/Tomcat would simply return 404 NOT FOUND.
Let’s take a look, both on standard servlet project and on a Spring-Boot project, how
the automatic loading works.