Java static code analysis

I am looking for an eclipse / netbeans plugin or tool that analyzes a java project and give us a report on unused imports, unused variables, unused methods, that violate user name conventions , etc.

+5
source share
8 answers

Eclipse provides it as Markers. He will provide all your cases except violating custom naming conventions.

enter image description here

+2
source

FindBugs is probably one of the most famous and worth a try.

For naming conventions, etc., I would advise you to take a look at CheckStyle.

+2
source

Netbeans 7.2 Inspect: goto Source | Inspect . , , , .

+2

... , sonar. , .

+2

Findbugs Eclipse .

- , Sonar.

+2

, , , PMD - .

[ ] , "Codefacts", , , , git svn. . " ..".

, , - , /, , , /, . [/ ]

+2

, : PMD, Checkstyle FindBugs.

+1

Checkstyle ( ) PMD.

0
source

All Articles