Related to this question, is the idea of a default servlet that serves static content a standard (even if a de facto one) across servlet containers, or does its use restrict deployment to Tomcat / Jetty?
For example, [1] shows this method for getting the default dispatcher:
final RequestDispatcher rd = getServletContext().getNamedDispatcher("default");
From a quick search it seems that this would also work on Jetty. How broadly will this technique work for obtaining a default servlet? For the servlet containers that have a default servlet, is it always a static content servlet?