weblogic報java.lang.OutOfMemoryError: PermGen space,permgen

來源:互聯網
上載者:User

weblogic報java.lang.OutOfMemoryError: PermGen space,permgen

記憶體溢出是軟體開發過程中經常遇到的一些問題,在本地使用weblogic中介軟體的時候,可能會經常打包部署應用,重複多次之後,就可能出現記憶體溢出的情況。

1 發現問題

在部署的時候,遇到相同的包,一般直接使用“更新”功能,更新多次之後,發現項目部署的越來越慢,而且還會列印java.lang.OutOfMemoryError: PermGen spaceOutOfMemoryError是記憶體溢出,PermGen space說明是永久代(即方法區)發生異常。

2 分析問題

在Tomcat的Wiki頁面中記錄過這種問題:

Why does the memory usage increase when I redeploy a web application?

That is because your web application has a memory leak.

A common issue are “PermGen” memory leaks. They happen because the Classloader (and the Class objects it loaded) cannot be recycled unless some requirements are met (*). They are stored in the permanent heap generation by the JVM, and when you redeploy a new class loader is created, which loads another copy of all these classes. This can cause OufOfMemoryErrors eventually.

(*) The requirement is that all classes loaded by this classloader should be able to be gc’ed at the same time.

這也算是它山之石可以攻玉了。產生上面問題應該也是JVM虛擬機器對永久代地區的內容做記憶體回收造成應用動態載入類檔案過多引起的記憶體溢出錯誤。

3 解決問題

在weblogic域的bin目錄中(我的是D:\Develop\Weblogic\wls12120\user_projects\domains\mydomain\bin)的setDomainEnv.cmd(linux對應修改setDomainEnv.sh),尋找-XX:MaxPermSize

set MEM_MAX_PERM_SIZE_64BIT=-XX:MaxPermSize=256mset MEM_MAX_PERM_SIZE_32BIT=-XX:MaxPermSize=256m

這個參數是設定永久代地區的最大值,預設是256M,直接改成512M(可以根據自己電腦配置適當增大),儲存,然後重新啟動weblogic。發現weblogic運行速度加快,並且只有當本機記憶體被其他應用佔用很多的時候才會再次出現這種錯誤。

問題解決。

註:PermGen space,permanent heap generation space,即永久代或方法區。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.