A program which uses static analysis to look for bugs in Java code.
3
votes
1answer
38 views
FindBug says this concurrent map doesnt need synchronized
So I've recently discovered FindBug, but it's making me think I don't know what I'm doing in a couple of places. This is one of them
private Map<String, Object> map = new ...
0
votes
0answers
35 views
Findbugs not working in Eclipse for Android project error java.rmi.Remote
When I run Findbugs plugin in eclipse I get the following error in the log
!ENTRY edu.umd.cs.findbugs.plugin.eclipse 2 2 2013-05-01 11:13:13.289
!MESSAGE The following classes needed for ...
2
votes
1answer
36 views
Findbugs, PMD or Checkstyle rule to find access by a field
I have a class caches a set of values internally. These values can be updated periodically and the cached contents will be updated appropriately. As long as users of this class do something like:
...
2
votes
0answers
26 views
Bug on use of static cursor or variable
I developed an application. Then I download and run find bug tool on eclipse in my application code and I get the following bug as :
Bug: Write to static field
...
1
vote
1answer
59 views
Find Security Bugs - Real SQL injection or false positive?
I am using FindBug along with the plugin Find Security Bugs to help me find security flaws in my code. I am not sure why some code is flagged as vulnerable to SQL injection.
Here are two examples:
...
0
votes
1answer
23 views
Apply parameter's nullability to return value
I have a method that is declared to both accept and return null.
@CheckForNull
public static String truncate(@CheckForNull text, int maxLength) { ... }
It returns null only if text is null. When I ...
5
votes
4answers
111 views
What's the advantage of making an inner class as static with Java?
I have an inner class in my Java class.
When I run find bugs, it recommends(warns) to make it as static.
What's the point of this warning? What's the advantage of making a inner class as ...
0
votes
0answers
23 views
Can't force Findbugs include filter to work
I have this findbugs include filter, but it doesn't work.
<FindBugsFilter>
<Match>
<And>
<Or>
<Package name="~com\.A\..*" />
<Package ...
0
votes
1answer
24 views
Is there a way to debug findbugs filters?
I'm using FindBugs and FindBugs Contrib to do some static analysis on my Java code. There are some "bugs" I'd like to filter in my Findbugs report. So I created a findbugs-exclude.xml file and wrote ...
0
votes
1answer
29 views
Find bugs does not show up when right clicking project or file in Eclipse
I have Eclipse 4.2.1, and I just downloaded find bug. It shows up in show view and marketplace says that it installed, however when I right click on an entire project or an individual Junit test case ...
1
vote
1answer
63 views
Is there a Sonar, Findbugs, or PMD rule that detects this possible NPE that CodePro detects?
Let's say I have a block of code like this:
Map<String, Object> mappy =
(Map<String, Object>)pExtraParameters.get(ServiceClientConstants.EXTRA_PARAMETERS);
if ...
0
votes
2answers
44 views
int value cast to float and then passed to Math.round
I have a method which creates a file size String for displaying to the user. FindBugs is saying that an int is cast into a float and then passed to Math.round.
public static String ...
1
vote
1answer
39 views
Why the variations on Ant plugin taskdefs?
I'm really confused with the proper (most modern, best practices, etc.) way of defining taskdefs for Ant plugins. Below is a snippet of code that I pieced together taken from one of our in-house Java ...
1
vote
1answer
35 views
Eclipse: Is this possible to run findbug on file save action?
I am using eclipse indigo 3.7.2. I am using findbug to detect issues. Everytime , I did any modification in a class I need to rerun the report to check the issues. Is there any way to run the FindBug ...
1
vote
1answer
40 views
Use annotation to document parameter passing policy?
Passing a mutable object in a method call exposes the object to modification by the callee, which may or may not be the intention of the caller, as in this example:
service.configure(parameters);
...
0
votes
1answer
50 views
FindBugs scanning external jars
I am using the following link to create an ant script to run findbugs on a web application:
Chapter 6. Using the FindBugs™ Ant task
I am setting the auxClasspath parameter to my jars folder.
But ...
3
votes
3answers
86 views
How can I enforce documentation in Java code?
What options are there for enforcing that code is documented? I want something that will run as part of the build process e.g. a maven target that will check that code is documented (class level and ...
2
votes
1answer
35 views
eclipse + FindBugs: possible to trigger on SVN synchronize?
I'm using Eclipse 3.6.2 and FindBugs 2.0.1 and synchronize my code with an SVN repository.
Is it possible to trigger FindBugs from eclipse to find bugs on the list of "outgoing changes"-files ...
1
vote
1answer
254 views
Sonar findbugs, possibility to run findbugs on uncompiled files?
I'm the following situation.
I'm using sonar (via and) and it runs just fine when I use the "Sonar way"-profile.
I would like to run the "Sonar way with Findbugz"-profile but I get an exception and ...
1
vote
3answers
74 views
Probable false positive from Findbugs?
Please refer to the following code snippet(stripped off the redundant part to highlight the problematic case):
FindBugs is complaining that "Method does not release lock on all paths" . Is this a ...
2
votes
1answer
108 views
Findbugs java result: 137 static analysis plugin
We are running a findbug job on jenkins after each commit, the results of which a published by the static analysis plugin.
This normally works completely as expected, However from time to time (about ...
2
votes
1answer
71 views
Why does FindBugs raise a critical warning when explicitly throwing a NPE?
Consider the following from FindBugs error desriptions
NP: Null value is guaranteed to be dereferenced (NP_GUARANTEED_DEREF)
There is a statement or branch that if executed guarantees that a
...
0
votes
2answers
38 views
findbugs not generating html report
the below is my taskdef in a ant build file
<target name="findbugs">
<echo message="${findbugs.home}"/>
<findbugs home="${findbugs.home}"
output="html"
...
3
votes
3answers
108 views
How to properly shutdown a java command line program
I have an interactive java program that allow user to send messages to a server, which behaves kind of like a shell, accepting user's keyboard input and perform various action.
For example
...
2
votes
1answer
181 views
How to generate HTML output using Gradle FindBugs Plugin
Using the Gradle FindBugs Plugin, how can I generate the output in HTML format??
The FindBugsExtension do have some config to set.
findbugs {
toolVersion = "2.0.1"
sourceSets = ...
5
votes
2answers
55 views
Can FindBugs be used to flag code that uses a method that's been blacklisted?
We're trying to move our very large codebase from Guava 11 to Guava 14 and would like to catch uses of removed or deprecated APIs. Can FindBugs perform such checking? If so, how?
1
vote
2answers
101 views
FindBugs Dead Store Warning - Should I restructure code or Ignore Warning
I am getting a DeadStore warning with Findbugs on int i below. I prefer not to write one-liners due to readability. Is there a better way to write this so that there is not DeadStore to i, but as ...
1
vote
1answer
43 views
FindBugs: INT_VACUOUS_BIT_OPERATION
In order to convert from int to IP String I am using approach in Going from 127.0.0.1 to 2130706433, and back again
private static final byte BYTE_MASK = (byte)0xff;
protected byte[] unpack(int ...
7
votes
1answer
182 views
Verify that Java classes implement toString()
As a part of the regular static analysis of my program, I would like to check that classes are likely to have sane toString() methods. Probably not that every class implements them, but perhaps that ...
1
vote
2answers
84 views
Findbugs: RV_RETURN_VALUE_IGNORED_BAD_PRACTICE
I am using FindBugs to analyze my code in Eclipse from Ant.
Following snippet gives RV_RETURN_VALUE_IGNORED_BAD_PRACTICE:
RV: Method ignores exceptional return value
...
1
vote
0answers
21 views
Identifying incorrectly handled InterruptedExceptions via static analysis
Is there a way to identify (via static analysis, e.g. findbugs or perhaps even checkstyle) when an InterruptedException hasn't been correctly handled (e.g. marking the thread as interrupted or ...
1
vote
0answers
88 views
Findbugs to use rank instead of priority in Jenkins
I'm setting up a Jenkins server with Sonar for code analysis and coverage with FindBugs, Cobertura and PMD.
Then I was asked to config a job in it that runs tests for a project and if Findbugs find ...
0
votes
1answer
53 views
What is the actual meaning of priority/confidence in findbugs ?
When I use fingbugs-eclipse plugin or findbugs-ant plugin, there is a confidence option to be set.
But according to findbugs document, bugs are given a rank 1-20, and grouped into the categories ...
1
vote
0answers
52 views
Can Sonar pass system properties into FindBugs? (e.g. findbugs.assertionmethods)
FindBugs offers some Analysis Properties that are essentially Java system properties. Is there any way to pass such properties into FindBugs when it is launched by Sonar?
In the Sonar configuration ...
1
vote
1answer
74 views
FindBugs shows only the first occurrence of a bug
FindBugs seems to show only the first occurrence of a particular bug in each method. This occurs in Eclipse as well as in the FindBugs stand-alone client.
How can I configure FindBugs to show all ...
1
vote
1answer
32 views
FindBugs fails to flag RC_REF_COMPARISON when comparing two BigIntegers with ==
In my code I have something like this:
if (a.foo() == b.foo()){ ... something ... }
where foo() returns BigInteger. I think FindBugs should flag this as the bug
RC: Suspicious reference comparison ...
1
vote
1answer
59 views
maven ignoring fingbugs suppressFBWarnings annotation
I have 2 projects that I am using the FindBugs plugin in maven to identify bugs. I am also using the @SuppressFBWarnings annotation to ignore specific bugs.
With the first project, I added the ...
0
votes
2answers
72 views
What is the correct 'Find Bug' update site to be used as Eclipse Plugin
I want to use 'Find Bug' as the static code review tool for java programs. I am trying to use the Find Bug plugin in Eclipse.
I am referring to the details to install eclipse plug-in mentioned in ...
0
votes
0answers
93 views
Static analysis [closed]
Nowadays we used to know static analysis tools like findbugs, pmd, and many more. In findbugs they use linear bytecode scanning.
Now for my final project, I develop tools almost like a findbugs but ...
0
votes
1answer
129 views
Eclipse FindBugs plugin fails with Android project asking for java.rmi.remote
I'm using FindBugs plugin 2.0.2.20121210 for eclipse Juno in an Android Project. When it starts fetching bugs it goes ok, but when it ends it shows an error at the Error Log tab that says
"The ...
2
votes
3answers
391 views
javax.annotation.Nonnull vs assert
I'm using Findbugs and javax.annotation.Nonnull on method parameters.
On private methods I usuallt add an assert line to check for nullness like
private void myMethod(@Nonnull String str) {
...
3
votes
2answers
471 views
Eclipse sonar plugin vs findbugs+pmd+checkstyle eclipe plugins
We are trying to install a CI Platform with (Jenkins,sonar,eclipse ...).
So that every developer can make analysis on his code before commit, I'm wondering between two alternatives :
running local ...
0
votes
0answers
46 views
FindBugs does not accept .jar files?
I am running FindBugs rules in Sonar. I have included a folder containing my application .jar files (includes classes), but FindBugs throws an exception saying it cannot find classes. Is this true, ...
0
votes
2answers
204 views
How to suppress FindBugs warnings for fields or local variables
I would like to suppress FindBugs warnings for specific fields or local variables. FindBugs documents that the Target can be Type, Field, Method, Parameter, Constructor, Package for its ...
0
votes
3answers
124 views
how to add maven plugins - find bugs, code coverage
In a maven project i am trying to add the the plugins for code coverage and find bugs in the pom.xml, i have pasted the error trace. If i remove the plugins it works fine.
Any suggestions?
pom.xml
...
5
votes
2answers
160 views
FindBugs - “may fail to close stream” when using ObjectOutputStream
I have this piece of code, which is to write an Ojbect to a byte array stream:
static byte[] toBytes(MyTokens tokens) throws IOException {
ByteArrayOutputStream out = null;
...
0
votes
1answer
293 views
Found reliance on default encoding in OutputStream
How can we fix the below issue reported by findBugs:
StringBuffer printData = getPrintData(data);
try {
OutputStreamWriter out = new OutputStreamWriter(new FileOutputStream(new ...
0
votes
2answers
137 views
What is the best way to integrate FindBugs with Jdeveloper?
I am a Find bugs fan and have used it before with Intellij Idea . It has a very nice plugin for Intellij Idea. Now I am using JDeveloper as it has the best support for Oracle ADF framework and my ...
0
votes
0answers
87 views
Redundant null check of “this” key FindBugs error ' RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE '
public class DisplayController{
public interface Display{
// Some declarations goes here
}
private final Display display;
public DisplayController(Display display){ // ...
2
votes
3answers
80 views
Dynamically report about new Java's software-quality violations in IDE
since I discovered advantages of using Findbugs, PMD and Checkstyle I use it almost every day. But if I would like to check recently created piece of code I need to proceed analyse manually.
I would ...






