Which plugins for Eclipse do you recommended for analyzing your code?
Bug finding, unused code detection, suggested refactoring, ...
|
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Don' t miss the Java compiler options (Window->Preferences->Java->Compiler->Error/Warnings) that come out-of-the-box with Eclipse itself. Raising each option as strict as your current project can tolerate will give you great benefit without having install any additional plugin. I use it in combination with Findbugs, both running automatically. Also out-of-the-box comes CodeStyle options (Window->Preferences->Java->CodeStyle *) that you can fine tune to your and/or your organisation standard. Do a really great job, combine with Window->Preferences->Java->Editor->Save Actions -> Format source code checked. |
|||||
|
|
|
PMD can also provide a lot of useful data about:
Used in combination with checkstyle, you can enforce consistent code style with refactoring suggestions. |
|||
|
|
|
I sometimes find it handy to see quick code coverage by using EclEmma to run my JUnit tests. EclEmma is an Emma (code coverage tool) plugin for Eclipse. It instruments your code at runtime, so there is only one step - run your tests from within Eclipse. It's sweet having coverage-highlighted source files in your Eclipse editor window, so you can verify your coverage while you write new code and corresponding unit tests to see what you may have missed testing. See the first link for screenshots. |
|||
|
|
|
FindBugs, Checkstyle, PMD |
|||
|
|
|
While the topmost answer Findbugs has also been my favorite at the time the question was asked, CodePro Analytix has far superior checks and a smoother integration into Eclipse nowadays. |
|||
|
|
|
There is a list here: http://www.eclipse-plugins.info/eclipse/plugins.jsp?category=Source+Code+Analyzer which lists recommended an popular code analysis tools. Unfortunately the site seems not to be updated lately. |
|||
|
|
|
Hm, the Code Analysis Plugin (CAP) hasn't been mentioned yet. Here are some screenshots and features from their website:
|
|||||
|