Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does there exist a project or product that implements static analysis rules specifically designed to enforce the advice given in "Effective Java," 2nd ed., Bloch?

Many people agree that "Effective Java" is a very good book. The ability to scan code for opportunities to apply the "Effective Java" advice would most likely be seen as valuable.

Now, some of the advice from the book is already covered by existing rules in tools like PMD. Also, some of the advice is probably beyond the recognition powers of static analyzers.

Maybe I'm just looking for an index into existing tools:

  • PMD rule foo → EJ Item X
  • FindBugs visitor bar → EJ Item Y
share|improve this question

6 Answers

up vote 2 down vote accepted

Short answer is - you're going to be writing them yourself with plugins like Checkstyle custom checks http://checkstyle.sourceforge.net/writingchecks.html

share|improve this answer

FindBugs has been endorsed by Joshua Bloch in an interview. But, no, FindBugs does not specifically test for the items mentioned in Effective Java.

share|improve this answer

IntelliJ IDEA has a lot of these Bloch's recommendations in its static analysis. But not as many as I (or you, I suspect) would like.

share|improve this answer

It depending on what you are looking for an why. If you are looking to find bugs or confusing code constructs then FindBug and PMD do a good job. IMHO IntelliJ does a better job as it has quick fixes for many of them as well.

The other day I ran PMD on a project as it found 12,000+ warnings. But what is the point in finding so many if you cannot fix them easily. By using IntelliJ I had this down to 4,000 in an afternoon without having to make many of the changes myself (and therefor introducing new bugs) BTW: Most of the time was spent rebuilding and testing my changes hadn't broken anything.

Specificly targeting Effective Java is likely to be ignoring most of the issue worth addressing in your code. This is because these tool will pick up many things more basic than Effective Java covers.

share|improve this answer

Looks like CodePro Analytix has a pre-defined audit rule set for some of the items of Effective Java.

http://code.google.com/intl/de-CH/javadevtools/codepro/doc/features/audit/EffectiveJava.html

However, I haven't used CodePro myself so I can't say anything about the quality of the tool.

share|improve this answer
I wonder which came first, their support, or my question ;) – Greg Mattes Oct 8 '11 at 16:44

Check out SourceMonitor (http://www.campwoodsw.com/sourcemonitor.html). I have used it for C++ and ActionScript with really useful results. It supports Java too but I have not tested that particular language. (Actionscript is not officially supported but it's pretty easy to fool the tool to accept AS as Java)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.