vote up 5 vote down star
2

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
flag

50% accept rate

5 Answers

vote up 2 vote down check

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

link|flag
vote up 3 vote down

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

link|flag
vote up 3 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag
vote up -1 vote down

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)

link|flag

Your Answer

Get an OpenID
or

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