This is not a standard, but without it, service applications cannot serve static content. It is very important.
[edit] I saw how you edited and clarified your question more clearly:
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 will also work on Jetty. How wide will this technique work to get servlets by default? For servlet containers, which by default servlet, is always the servlet static content?
In this case, it may be the defacto standard, but I would not rely heavily on this and, of course, not on code specific to a particular implementation, or even on defacto standards. Ask yourself: what's the point / value of sending a request to a default servlet? Exactly, nothing.
source share