Tagged Questions
A program which uses static analysis to look for bugs in Java code.
24
votes
14answers
13k views
Checkstyle vs. PMD
We are introducing static analysis tools into the build system for our Java product. We are using Maven2 so Checkstyle and PMD integration come for free. However it looks like there is a large overlap ...
16
votes
2answers
2k views
What are the differences between PMD and FindBugs?
There was a question comparing PMD and CheckStyle. However, I can't find a nice breakdown on the differences/similarities between PMD and FindBugs. I believe a key difference is that PMD works on ...
16
votes
9answers
14k views
ResultSet not closed when connection closed?
I ve been doing code review (mostly using tools like FindBug) of one of our pet projects and FindBug marked following code as errorneus (pseudocode):
Connection conn = dataSource.getConnection();
...
14
votes
1answer
3k views
Is there a way to ignore a single FindBugs warning?
With PMD, if you want to ignore a specific warning, you can use // NOPMD to have that line be ignored.
Is there something similar for FindBugs?
14
votes
4answers
4k views
When using Eclipse with FindBugs can you mark a bug as not a bug and have it removed from the bug list?
FindBugs has found a potential bug in my code. But it is not a bug.
Is it possible to mark this occurrence as 'not a bug' AND have it removed from the bug list?
I have documented quite clearly why ...
13
votes
5answers
2k views
In what situations could an empty synchronized block achieve correct threading semantics?
I was looking through a Findbugs report on my code base and one of the patterns that was triggered was for an empty synchronzied block (i.e. synchronized (var) {}). The documentation says:
Empty ...
11
votes
11answers
605 views
Any Tools to Catch Silly Mistakes in C Code?
I had a nasty typo that wasted my time and my colleague's time, it was something like this:
for (i = 0; i < blah; i++); // <- I had a semi-colon here, that's the bug!
{
// Some awesome logic ...
9
votes
1answer
748 views
finetuning findbugs ant task
Within eclipse i am able to define detector ids and bug categories to be reported from the preference page. I can't find anything like that for the findbugs ant task in the findbugs docs or using ...
9
votes
6answers
389 views
When to stop following the advice of static code analysis?
I do use static code analysis on a project with more than 100.000 lines of Java code for quite a while now. I started with Findbugs, which gave me around 1500 issues at the beginning. I fixed the most ...
8
votes
2answers
282 views
@GuardedBy annotation with java.util.concurrent.locks.ReadWriteLock
What is the proper way to annotate fields that are protected with a ReadWriteLock so that tools like FindBugs can leverage the annotation? Should the name of the ReadWriteLock simply be written in the ...
8
votes
2answers
2k views
How to handle a Findbugs “Non-transient non-serializable instance field in serializable class”?
Consider the class below. If I run Findbugs against it it will give me an error ("Non-transient non-serializable instance field in serializable class") on line 5 but not on line 7.
1 public class ...
7
votes
2answers
1k views
Findbugs gives “Null pointer dereference of System.out”, why?
I am using Java 1.7, Eclipse 3.7 with the FindBugs plugin from the marketplace. The example is as nice as heaven:
class Application
{
public static void main( String[] args )
{
...
7
votes
5answers
213 views
findbugs and database password security issue
I'm using the following code to initialize database connection:
public Connection getConnection() {
try {
if (null == connection) {
String driverName = ...
7
votes
6answers
485 views
Discover NullPointerException bugs using FindBug
When I run FindBug on this code, it reports NO issues.
boolean _closed = false;
public void m1(@Nullable String text) {
if(_closed)
return;
System.out.println(text.toLowerCase());
}
...
7
votes
5answers
488 views
Catching weird C pointer arithmetic bugs
I recently ran into a very sneaky bug, in which I forget to dereference a pointer to a string (char array) and thus sometimes overwrote one byte on the stack.
Bad:
char ** str;
(*str) = ...
7
votes
9answers
3k views
Easy way find uninitialized member variables
I am looking for easy way to find uninitialized class member variable.
Runtime or compile time both methods OK.
Currently breakpoint in class constuctor and watch variable one by one.
7
votes
4answers
2k views
Is there a Findbugs and / or PMD equivalent for C/C++?
I was recently asked about alternatives to Coverity Prevent for a code base that includes both C/C++ and Java. Obviously, on the Java side, the free tools available include Findbugs (compiled code ...
7
votes
1answer
2k views
6
votes
1answer
214 views
How to teach findbugs to understand IoC fields properly?
This is my class (JAX-RS annotated):
@Path("/")
public class Foo {
@Context
private UriInfo uriInfo;
// ...
}
This is what findbugs says:
Unwritten field: com.XXX.Foo.uriInfo
It's true, ...
6
votes
3answers
387 views
Findbugs and comparing
I recently started using the findbugs static analysis tool in a java build I was doing. The first report came back with loads of High Priority warnings. Being the obsessive type of person, I was ...
6
votes
2answers
345 views
What does all these FindBugs prefixes AM, BC, DP, … mean?
http://findbugs.sourceforge.net/bugDescriptions.html contains a long list of error types. They belong to a category like correctness and performance but do start with an prefix too. EQ for equality is ...
6
votes
2answers
937 views
Findbugs Annotations - Do I need annotation.jar and jsr305.jar in my deployed code?
So, I would like to use the findbugs annotations to suppress warnings we deem ok code.
Do we need to deploy the annotation.jar and jsr305.jar into our production runtime, or do we only need these ...
6
votes
8answers
480 views
When to Garbage Collect
I have a piece of code that load a very big image in memory. So it seemed like a reasonable thing to call
System.gc();
before loading the image. From what I can tell it works with no issues.
...
5
votes
2answers
349 views
detecting race condition using findbugs or another analysis tool
Below bean is not thread-safe: method addIfNotExist is not synchronized, so it is possible that the same term gets added twice because of race condition. I annotated the class using JCIP annotation ...
5
votes
4answers
1k views
Is Sonar Replacement for Checkstyle, PMD, FindBugs?
We are working on a web project from scratch and are looking at the below static code analyzers...
conventions (Checkstyle)
bad practices (PMD)
potential bugs (FindBugs).
The project is built on ...
5
votes
4answers
346 views
What is the proper way to use a Logger in a Serializable Java class?
I have the following (doctored) class in a system I'm working on and Findbugs is generating a SE_BAD_FIELD warning and I'm trying to understand why it would say that before I fix it in the way that I ...
5
votes
2answers
864 views
Method may fail to close stream on exception
I get the critical error with finbugs
The method creates an IO stream object, does not assign it to any fields, pass it to other methods, or return it, and does not appear to close it on all possible ...
5
votes
2answers
237 views
Findbugs + JSR305: Possibility to specify default behavior?
Note: those annotations, I'm talking about, are specified by JSR305.
I have the latest Findbugs (1.3.9) and it finds errors correctly
when some field, annotated with @Nonnull, is assigned to null.
...
5
votes
2answers
3k views
Findbugs filter file for ignoring JUnits
I need to set up a filter file for my findbugs ant script that scans only the src/* files and not the test/* files.
What is the syntax for checking all classes while ignoring any filename or package ...
4
votes
3answers
123 views
Autoboxing error
FindBugs is telling me I have the following error:
A primitive is boxed, and then immediately unboxed. This probably is due to a manual boxing in a place where an unboxed value is required, thus ...
4
votes
1answer
174 views
Good code review tool for JSF , Java, and hibernate framework
can anyone suggest good code review tool for JSF, Java, and Hibernate framework.
i need a good tool that can find potential bug in coding. for example, possible exception. connection handling code ...
4
votes
3answers
2k views
Findbugs and Maven 3.x
Has anyone managed to get findbugs 2.3.1, 2.3.2-SNAPSHOT or 2.4-SNAPSHOT to work with a Maven 3.x project?
I always end up with:
[ERROR] Failed to execute goal
...
4
votes
3answers
1k views
@Nullable/@NotNull with IntelliJ IDEA, Maven & JSR 305
I really like the code inspection functionalities which are now able with either JSR 305 or Jetbrains' proprietary annotations for IntelliJ.
Unfortunately both implementations (JSR 305 and Jetbrains') ...
4
votes
5answers
356 views
Java closing connections and findbugs
In our code we usually use the following pattern:
Connection conn;
try{
conn = getConnection();
//Do databasey stuff
}catch(Exceptions that get thrown){
}finally{
try{
...
4
votes
4answers
205 views
PMD - Is there a way to track PMD complaince by individual developer
Is there a tool or plugin to track PMD, CheckStyle & Findbugs noncompliance report for each developer
Thanks
KR
4
votes
2answers
363 views
Test for floating point equality. (FE_FLOATING_POINT_EQUALITY)
I am using a findbugs in an ANT script and I can't figure out how to fix two of my errors. I have read the documentation, but don't understand. Here are my errors and the code that goes with them:
...
4
votes
1answer
363 views
Hiding non-java classes from findbugs
I have a mixed scala/java project - mostly java. I would like to use Findbugs on my java code, but the scala classes are giving it trouble. So I'd like to exclude them from Findbugs. So far I've tried ...
4
votes
2answers
238 views
Using custom detectors with FindBugs Maven plugin
I have a nice JAR of some custom FindBugs detectors I'd like to use with the FindBugs Maven plugin. There is a way to do this with the plugin via the <pluginList> configuration parameter, but ...
4
votes
2answers
623 views
How to detect array size in Java bytecode (FindBugs)
I'd like to find out about the size of an array being allocated by looking at the bytecode, if that information is known at compile time, of course.
Background: I want to write a FindBugs detector ...
4
votes
6answers
276 views
What standard optimization refactoring can I do to my Java application?
I have a semi big Java application. It's written quite poorly and I suspect there are quite a lot of simple things I can do that will clean things up a bit and improve performance.
For example I ...
4
votes
4answers
6k views
Nested Maven properties evaluated in refering POM rather than defining POM
I'm defining a report configuration in my parent pom which will be run in each child and grandchild project.
Like so:
<reporting>
<plugins>
<plugin>
...
4
votes
3answers
943 views
Findbugs not finding potential SQL injection vulnerability
I just installed the FindBugs plugin for Eclipse, with the hope that it will help me find SQL injection vulnerabilities in my code. However, it doesn't seem to be finding anything, even when I ...
4
votes
4answers
1k views
Findbugs warning: Equals method should not assume anything about the type of its argument
When running FindBugs on my project, I got a few instances of the error described above.
Namely, my overriding versions of equals cast the RHS object into the same type as the object in which the ...
3
votes
1answer
202 views
How to export FindBugs/PMD/Checkstyle rules from Sonar and import into Netbeans
My company has sonar set up to with various plugins (PMD, FindBugs, CheckStyle), and although it is very useful as is (it runs after every Jenkins build that was triggered by a check-in to svn), I ...
3
votes
1answer
41 views
ObjectName incompatible with String FindBug error
For my production code resembling the following:
public something xyz(String name) {
return getSomething(abc.get(name));
}
Where the method "get" expects javax.management.ObjectName to be passed ...
3
votes
4answers
188 views
There are similar tools like FindBugs?
I'm searching for similar tools like FindBugs to analyze my code. I only saw that in the links page of the FindBugs site.
I can search in webfor the tools, but I don't know what is the category of ...
3
votes
2answers
338 views
FindBugs - SE_BAD_FIELD rule, why it ignores java.lang.Object?
From the description of SE_BAD_FIELD:
Non-transient non-serializable instance field in serializable class
This Serializable class defines a non-primitive instance field which is neither ...
3
votes
2answers
133 views
FindBugs Ant task - how to load preferences file?
I run FindBugs from Ant task. I have preferences file .fbprefs which I want FindBugs to use, so that the bug report produced by Ant matches the one produced by Eclipse.
3
votes
1answer
171 views
Nonnull annotations and standard java packages
I'm trying to add findbugs-compatible annotations to a project, but noticed that @Nonnull is not always processed as I'd expect. For example findbugs does not assume that standard native collections ...
3
votes
1answer
87 views
How do I get @ParametersAreNonnullByDefault to work?
I've made several attempts at getting package annotation @ParametersAreNonnullByDefault to work for me in a maven project but with no success.
Could someone share a link to a minimal/sample maven ...