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.
我在 Debian 服务器上使用 tomcat6 和 java。有谁知道 PermGen 的一些好的和可靠的垃圾收集策略?
如果你有证据表明你有太多加载的类的问题,特别是,如果你有很多“一次性”类可能被引用一次而不再使用的问题,你应该了解自定义类加载器.
为了对一个类进行垃圾回收,该类的所有对象都必须是可回收的,并且除了加载类加载器(还必须满足“可回收性”的标准要求)之外,不得有对该类的引用。然后类和它正在加载的类加载器将被收集在一起。