2009년 8월 19일 수요일

[Eclipse Tips] Eclipse Plugins - Status Memory Monitor

Eclipse가 자동으로 Memory를 관리해 주지만,
100%확실하게 작동하는 것 같지는 않다.
아래 소개되어 있는 Eclipse Plugins을 사용하면 도움이 되리라 생각된다.

-----------------------------------

Eclipse Status Monitor
The Eclipse Status Memory Monitor Plugin offers the continiously dynamic inspection of the Eclipse IDE's memory consumption and the automatic and forced execution of garbage collection for the Eclipse IDE. The Status Memory Monitor installs itself into the Eclipse status line area and is customizable to the users needs.

The Status Memory Monitor Plugin for the Eclipse Workbench offers:
· The continiously dynamic inspection of the Eclipse Workbench memory consumption inside the Eclipse status line
· The automatic and forced execution of garbage collection for Eclipse
· The visualisation of a setable warn memory indication for Eclipse
· The individual settup of the Memory Monitors sampling rate
· To customize it's options and used colors individually
· Included online help

Compatibility
This Plugin has been tested with Eclipse R3.1 and a Java jdk1.5.0_02 under Win2K/XP.
Go Download


Let's smile~~ Be Happy~~
*^_______________^*

[Eclipse Tips] Using many workspace using just one eclipse

개발 프로젝트를 진행하면서 관리를 위해서 여러개의 Workspace가 필요한 경우에 Eclipse 하나로 사용하면 계속해서 Workspace 설정을 바꿔야 하는 불편함이 있다. 이러한 불편함을 해결하고 싶을때에는 Eclipse 실행 옵션을 활용하면 된다.

Eclipse의 바로가기를 생성하고 Target 정보에서 eclipse.exe 이후에 -data workspace_name (예: -data D:\myproject\google\workspace) 옵션을 넣으면 실행시 해당 workspace를 사용하여 eclipse가 실행된다.

-----------------------------------------

Do you want to manage lots of workspace using just one eclipse? If so, you can create the shortcut for eclipse and edit the properites. Let's add the eclipse option for workspace.
-data workspace_name
ex) -data D:\myproject\google\workspace


Let's smile~~ Be Happy~~
*^_______________^*

[Eclipse Tips] “Java Heap Space” and “Out of Memory”

Eclipse 사용 시 발생하는 "Java Heap Space" 과 "Out of Memory" 에러 해결 방법입니다.

WebSite를 확인했지만 eclipse.ini 파일에 Perm size와 관련된 항목을 수정하라고 되어 있지만, 별로 효과가 없는 것 같아 계속 해결책을 찾았으며, 결국 찾은 듯 합니다. 이 방법을 사용하고 나서는 에러가 발생하지 않고 있네요.

Eclipse의 바로가기를 생성하고 바로가기의 등록정보에서 Target 항목에 "-vmargs -Xverify:none -XX:+UseParallelGC -XX:PermSize=20M -XX:MaxNewSize=32M -XX:NewSize=32M -Xmx256m -Xms256m"를 넣습니다.

그리고 Eclipse를 실행하면 에러없이 사용 가능할 것 같네요.

-------------------------------------------------------------------------------------

How to solve the problems related to "Java Heap Space" and "Out of Memory" when you're using the eclipse. It's sometimes occurred when you launch, run, and use the eclipse.

I was researching the solution about this problem, and finally I thought I found the right solution. There are a lot of solutions related to this problem, and they say we can solve the problem editing the eclipse.ini file, especially perm size. However, this solution wasn't the right solution for me.

The solution what I suggest is that you can create the shortcut for eclipse, and edit the properties. You can put "-vmargs -Xverify:none -XX:+UseParallelGC -XX:PermSize=20M -XX:MaxNewSize=32M -XX:NewSize=32M -Xmx256m -Xms256m" into the target as below.



Let's smile~~ Be Happy~~
*^_______________^*