Any eclipse plugin to find jdbc connection leak in java code

I have a communication leak problem in my java code. I need to know that the eclipse plugin that detects connections / results closes in my java code.

+4
source share
1 answer

You might be interested in the findbugs eclipse plugin , it supports blocks of code that don't close resources .

+3
source

All Articles