Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Tomcat 沙盒应用程序是否喜欢在单独的 JVM 或某种类型的 JVM 上运行它们?
Tomcat 并不是真正的沙盒 Web 应用程序。这些应用程序在同一个 JVM 中运行。唯一可能隔离应用程序的是类加载器。每个 webapp 都有自己的类加载器,因此它不会与其他应用程序共享特定于应用程序的类。
当内存不足时,容器也会内存不足。它运行的唯一原因可能是因为它不需要分配更多内存。