본문 바로가기

Eclipse

Memory leak 찾고 고치기

Memory Leak 문제 고치기

                                                                                                                                           


1) Quick Fix : Eclipse memory Leak warning / errors

outputstream과 같은 것들을 close해주지 않는 경우 compile 과정에서 에러를 던지도록 설정이 가능하다.

Preference > Java Compiler > Error / warnings > leak 검색

- close() 해줘야 되는 시점은 언제지? / 안해주면 어떤 문제가 있는거지? ( close() 글 확인 )


하지만 모든 file의 close 여부를 detect 하지 못하기 때문에 

2번째 방법도 필요하다.



2) VisualVM 사용하기

outputstream과 같은 것들을 close해주지 않는 경우 compile 과정에서 에러를 던지도록 설정이 가능하다.

Preference > Java Compiler 




'Eclipse' 카테고리의 다른 글

equinox란  (0) 2017.11.20
TroubleShooting  (0) 2017.05.12
Eclipse가 느릴 때  (0) 2017.03.23
Eclipse 성능개선 최적화  (0) 2017.03.02
제품 배포 및 설치하기 (Updating and installing software)  (0) 2017.02.28