Howdy Ranchers!
I've got some problem with understanding the purpose of the default
servlet (the one mapped to the "/" url in DD).
I understand that this servlet will be served if no other
web-component is matching the requested URL.
But what about welcome-files and static resources? How they can be accessed if I define the default servlet?
If I define it, I can still access the
JSP files but the static ones (which
does exist in the application and are accessible) are unavailable (their request is intercepted by the default servlet). The result is exactly the same when the static resource doesn't exist at all.
BTW: As I understand, the JSP files are working fine because they are web-component parts. But, talking low-level, are they dispatched to the JSP container or some other magic applies?