容器如何对待没有部署为Web应用的一部分的servlet?

Servlet specification上说,
Servlets in a container that were not deployed as part of a Web application are implicitly part of a “default” Web application and have a default ServletContext.

不知道该如何理解,如果容器中有10个独立的servlet,容器会怎么对待他们呢?
容器会把每个servlet视为1个默认的独立应用,从而每个servlet都对应一个servletContext?
或者容器会把这10个servlet整体视为一个默认的应用,从而他们共享一个servletContext?