/** 
 * MyEclipse6.5通过Jetty跑Web应用时提示OutOfMemoryError: PermGen space的解决办法 
 * @see --------------------------------------------------------------------------------------------------- 
 * @see Jetty启动类-->Run AS-->Open Run Dialog-->Arguments-->VM arguments-->输入如下参数即可解决 
 * @see -server -Xms512m -Xmx1024m -XX:PermSize=512m -XX:MaxPermSize=512m -XX:+CMSClassUnloadingEnabled -XX:+PrintGCDetails 
 * @see --------------------------------------------------------------------------------------------------- 
 * @see 详细介绍可参考:http://developer.51cto.com/art/201205/336013.htm 
 * @see --------------------------------------------------------------------------------------------------- 
 * @create Dec 1, 2014 10:47:59 AM 
 * @author 玄玉<http://blog.csdn.net/jadyer> 
 */  

 

相关文章:

  • 2021-05-10
  • 2021-11-04
  • 2021-07-11
  • 2021-07-01
  • 2021-11-26
猜你喜欢
  • 2021-10-10
  • 2022-03-10
  • 2021-10-20
  • 2021-05-02
  • 2022-12-23
相关资源
相似解决方案