user919789
user919789

Reputation: 171

What kind of Error Detection Analysis does the Netbeans IDE have?

I'm doing some research on Netbeans IDE. I mean, why use ActionPMD and FindBugs plug-ins when Netbeans already has a built in error detection system? Is the difference really that significant?

Upvotes: 0

Views: 139

Answers (1)

David Hamilton
David Hamilton

Reputation: 339

FindBugs and ActionPMD "dig deeper". Without them, Netbeans can easily find issues like a local variable that is written to but never read. FindBugs will go a step further, and find streams that have not been closed ext..Some of the rules also include tests for "best practices" and possible security issues.

Just to clarify on the comment above: FindBugs and ActionPMB are both static analysis tools. In my experience, FindBugs is useful for finding subtle flaws and performance issue.

Upvotes: 1

Related Questions