I've been experimenting with the jsr 305 annotations for use with Findbugs, specifically the @CheckForNull annotation which would have avoided a bug I just found making it out to customers. I've added jsr305.jar and annotations.jar to my build path but the bugs aren't found by findbugs. I'm using Eclipse with the Eclipse Findbugs plugin. Below is some sample code which shows the same bug but doesn't when I run findbugs over it find the bug. I have tried this in Eclipse Galileo and Ganymede.
public class FindBugsAnnotationsTest {
ArrayList<String> canBeNull;
@CheckForNull
public List<String> getCanBeNull() {
return canBeNull;
}
public void shouldGetFindbugsWarning() {
canBeNull.add("a string");
getCanBeNull().add("a string");
}
}
This may be obvious, but I think your issues are with Eclipse (perhaps the FindBugs plugin in particular), not FindBugs itself.
You might consider running FindBugs from the command line to eliminate any Eclipse issues and ensure that you have FindBugs running correctly in its own. Knowing how to run FindBugs in a standalone mode will give you a fallback when your IDE is not configured properly.
I saved your source code in a file named
FindBugsAnnotationsTest.java
, added imports forList
,ArrayList
, andCheckForNull
, compiled, and ran FindBugs 1.3.9. FindBugs generates several warnings about null values:These are the imports I added to the top of
FindBugsAnnotationsTest.java
:Commands:
Where
${FINDBUGS_HOME}
is the directory in which Findbugs 1.3.9 is installed.javac
is assumed to be on the path.Note: I used the
findbugs.jar
instead ofannotations.jar
andjsr305.jar
but I get the same results with this command: