valli
valli

Reputation: 5931

Any eclipse plugin to find the jdbc connection leakage in java code

I have connection leakage problem in my java code. I need to know the eclipse plugin which detects connections/resultset are closed in my java code.

Upvotes: 4

Views: 3712

Answers (1)

Jon Freedman
Jon Freedman

Reputation: 9697

You may be interested in the findbugs eclipse plugin, it has support for code blocks which do not close resources.

Upvotes: 3

Related Questions