Jboss配置中MaxPermSize和MaxPermGen有什么区别?
我发现有两个属性。我猜某些 Jboss 版本支持 MaxPermGen,而其他一些版本则支持 MaxPermSize。
这只是我的猜测。这两个属性之间的确切区别是什么?
我尝试在 Jboss 5.1.0 中将 MaxPermGen 替换为 MaxPermSize 来找出差异。 JBoss 启动失败。
There are two attributes that I figured out. I guess some of the Jboss versions support MaxPermGen
and some other versions support MaxPermSize
.
Thats my guess only. What is the exact difference between those two attributes ?
I tried to replace MaxPermGen
with MaxPermSize
in my Jboss 5.1.0 to findout the difference. JBoss failed to start.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道 Sun VM(在任何版本的 JVM 中)有任何
MaxPermGen
选项,无效的选项将阻止 JVM 正常启动。但是,
MaxPermSize
是正确的,并且允许定义永久代的大小。参考
I'm not aware of any
MaxPermGen
option of the Sun VM (in any version of the JVM) and invalid options will prevent the JVM to start properly.However,
MaxPermSize
is correct and allows to define the Size of the Permanent Generation.Reference