Tagged Questions
PMD scans Java source code and looks for potential problems like possible bugs, dead code, suboptimal code , overcomplicated expressions and duplicate 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 ...
11
votes
1answer
390 views
Any current workarounds to use Sonar for Java 7 code?
I try to use Sonar on a Java 7 project (which relies on new syntactic features) and the PMD part and the Checkstyle part fail to parse those files.
The Findbugs part fails to read Java 7 class files.
...
11
votes
5answers
2k views
The “Why” behind PMD's rules
Is there a good resource which describes the "why" behind PMD rule sets? PMD's site has the "what" - what each rule does - but it doesn't describe why PMD has that rule and why ignoring that rule can ...
10
votes
5answers
4k views
Java PMD warning on non-transient class member
On line:
private boolean someFlag;
I get the following PMD warning:
Found non-transient, non-static member. Please mark as transient or provide accessors.
Can someone please explain why this ...
9
votes
5answers
135 views
Does the method name length have any impact whatsoever on the performance?
I am a senior developer, so this appears to me a stupid question. My answer should be NO, or WHAT? NO!!!
But I was in a meeting yesterday, and I was explaining some PMD results. When we get to the ...
8
votes
3answers
369 views
Best php qa tools
I am looking for qa tools for php. I am used to pmd, findbugs and checkstyle in the java world. Do you know some similar tools for php doing code analysis ?
So far I have found but not tested yet :
...
7
votes
6answers
5k views
Could someone explaining the reasoning behind some of these PMD rules?
DataflowAnomalyAnalysis: Found
'DD'-anomaly for variable 'variable'
(lines 'n1'-'n2').
DataflowAnomalyAnalysis: Found
'DU'-anomaly for variable 'variable'
(lines 'n1'-'n2').
DD and ...
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 ...
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
1answer
124 views
How to lock maven plugin version
How can I lock the version of a Maven plugin I want to use?
I have the PMD plugin configured like so:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
...
5
votes
3answers
630 views
Do you know of pmd or checkstyle definition files that will enforce hibernate best practices?
For example, not to build queries by string manipulation, and the like.
4
votes
4answers
977 views
PMD - Code Analyzer warnings
I am using PMD to analyze code and it produces a few high priority warnings which I am not quite sure.
1) Avoid if(x!=y)..; else...;
But what should I do if I need this logic? That is, I do need ...
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
880 views
Can i customize PMD of my eclipse?
We know that PMD is integrated with eclipse. And i want to customize it.
say suppose i want all variables to start with small letter
or say i want all method name to be more than 8 characters or so ...
3
votes
1answer
201 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
240 views
PMD/CPD: Ignore bits of code using comments
Is there a way to tell PMD to ignore checking parts of code for duplication?
For example, can I do something like this:
// CPD-Ignore-On
...
// CPD-Ignore-Off
Currently I have PMD set up like this ...
3
votes
1answer
329 views
Resolve pmd rulesets in Maven locally
I try do the following:
I have a standard POM defined for all my Maven2 projects.
That POM includes the tools to use, and for PMD the rulesets to use.
I have defined a property that names these ...
3
votes
2answers
167 views
Usage of static analysis tools - with Clear Case/Quest
We are in the process of defining our software development process and wanted to get some feed back from the group about this topic.
Our team is spread out - US, Canada and India - and I would like ...
3
votes
1answer
476 views
In the Eclipe PMD plugin, can I reference the standard ruleset files?
I would like my eclipse PMD plugin configuration to access the same standard ruleset files as the maven-pmd-plugin.
You can configure the maven pmd plugin to use a custom set of rule sets like this:
...
3
votes
4answers
433 views
Add an empty string vs toString - why is it bad?
According to the tool PMD, the following is a bad practice:
String s = "" + 123; // bad
String t = Integer.toString(456); // ok
This is an inefficient way to convert any type to a `String`.
Why ...
3
votes
5answers
2k views
Logger vs. System.out.println
I'm using the PMD plugin for eclipse and it gives me an error when using System.out.println() with the explanation:
System.(out|err).print is used, consider using a logger.
My question is - What ...
3
votes
7answers
325 views
Detect changing value of object passed as parameter
I'm now working with code that looks like this
public String getName(User user) {
user.setSth(...);
return user.getName();
}
I think it's bad practice to change objects passed as ...
2
votes
1answer
34 views
Checkstyle/PMD rule for SimpleDateFormat not thread safe warning
Recently I encountered many bugs because of SimpleDateFormat is not thread safe.
The reason I found out was it was not synchronized properly or new instances were not created for separate threads.
...
2
votes
3answers
37 views
Working with PMD rules
How to work with PMD rules. Where to place that xml file and run against my application?
2
votes
3answers
301 views
Wicket and the 'constructor calls overridable method' PMD warning
We've been avoiding this PMD warning by moving most of our constructor code into onInitialize(). But are we just moving the problem (design flaw?) into a difference place?
i.e. is our onInitialize() ...
2
votes
1answer
917 views
PMD - NPath complexity very high with ternary operator (?)
I'm using PMD to generate some code quality report on a project.
I don't understand a result for the NPath complexity inspection.
I have created a dull class that is show-casing the result (this is ...
2
votes
1answer
626 views
Unsupported @SuppressWarnings ( “PMD.DoNotCallSystemExit” )
I need to use System.exit(0) in an application. Eclipse has the PMD plugin installed and complains about this line of code. Addind @SuppressWarnings ( "PMD.DoNotCallSystemExit" ) remove that warning ...
2
votes
2answers
242 views
how to modify existing PMD rules
There have been numerous questions about creating new rules, and creating rulesets. Those are also the topics covered (or should I say mentioned) by the official documentation.
But what if i want to ...
2
votes
8answers
679 views
Default constructor is good or evil? Checkstyle and PMD are opposite here
Checkstyle says:
Class should define a constructor.
PMD says:
Avoid unnecessary constructors - the compiler will generate these for you.
Who is right? Or let's put it this way - what are the ...
2
votes
0answers
347 views
Custom Rules With PMD - Passing values to a rule at runtime
My requirement is to parse java files and find the classes or interfaces which implement a particular interface. Hence I started with implementing custom rules in PMD. I was able to write an XPath ...
2
votes
2answers
108 views
PMD xpath rule to warn about the use of equals() on BigDecimal
Could someone suggest a PMD xpath rule to warn that calling the equals() method of java.math.BigDecimal will check for both value and scale which usually (unless for some engineering type apps) might ...
2
votes
4answers
388 views
What is the right position of literals in String Comparison?
I have
if (localName.equals("TaxName")) {
but PMD says
Position literals first in String comparisons
2
votes
2answers
2k views
Code analyzers: PMD & FindBugs
1. Regarding PMD:
1.1 How do I set the PMD checks, to ignore some of them, like "Variable name is too short, or too long", "Remove empty constructor, etc" - and if I do that, another warning appears ...
2
votes
1answer
256 views
How do I enforce assigning to arguments of methods using FindBugs?
As an alternative to littering my code with thousands of final keywords in front of my parameters, I'm trying to enforce it using FindBugs.
It doesn't seem possible to do this, but there should be a ...
1
vote
2answers
33 views
How to have nested conditions for PMD Xpath rules
My rule requires me to apply them only to methods without 'get' as part of their name. In another words, my rules need to apply to only non-getter methods in the class. I know to get a hold of all the ...
1
vote
2answers
29 views
PMD PrimaryPrefix issue through XPath
I spent about 4 hours on this but XPath proved to be very painful to work with when developing fairly original custom rules.
For one part of my problem, I need PMD XPath to be able to distinguish ...
1
vote
0answers
28 views
Different threshold levels for PMD rule
Is there way to report pmd error using two threshold levels
Problem: we have decided that the maximum cyclomatic complexity allowd for methods will be 11 if a method has cyclomatic complexity ...
1
vote
1answer
53 views
maven-pmd-plugin uses only the bundled rulesets
I am using the maven-pmd-plugin on my project and this is how I have configured it
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
...
1
vote
1answer
52 views
Ant PMD and rule exclusion
I have an Ant task to produce a PMD report:
<pmd rulesetfiles="${commons-home}/src/main/resources/pmd/wai_ruleset.xml">
<formatter type="xml" ...
1
vote
2answers
94 views
Java code PMD Complains about Cyclomatic Complexity , of 20
When i ran PMD on my Java Code , one of the Error Message it is showing is
"The class STWeb has a Cyclomatic Complexity , of 20 " .
Typically my java class is of this way
public class STWeb ...
1
vote
1answer
30 views
Resolving PMD Error
I am using PMD for checking Coding Standards
I am confused about the following below point where PMD is showing Error
A method should have only one exit point, and that should be the last ...
1
vote
1answer
47 views
Is the PMD Eclipse Plugin Open Source?
Is the PMD Eclipse Plugin Open Source? And if yes, where is the source please?
I know that PMD is open source and the code can be found here: http://sourceforge.net/projects/pmd/files/pmd/
And that ...
1
vote
1answer
58 views
Is there a tool for reporting downcasts in Java?
Wondering if there is a reporting tool (such as PMD) which reports downcasting in Java code.
1
vote
1answer
287 views
Getting empty pmd.xml - unable to copy several log files from project dir to workspace
Addressing the issue of empty XML files of PMD/Clover, I have created build.xml in the root of a repository and changed its source so that it can run my test cases of another directory, like "tests".
...
1
vote
3answers
36 views
PMD compliant stream copy in java
I have a piece of code for stream copying.
OutputStream os = ...;
InputStream is = ...;
int bufferLength;
byte[] buffer = new byte[1024];
while ((bufferLength = is.read(buffer)) != -1) {
...
1
vote
3answers
115 views
Finding encoding issues in Java Project/Source
I'm currently working on a Java project where it's part of my job to watch over the quality. As tools I use Jenkins in combination with Sonar. These tools are great and the helped me to track issues ...
1
vote
1answer
184 views
PMD with grails project
Does PMD works with grails project, i.e. with .groovy files??
i'm using STS editor,
if it works, what setup i have to do?
Please let me know, if anyone have any idea
Thanks in advance
1
vote
3answers
360 views
Joshua Bloch's Builder pattern and PMD warnings
I have written a class using Joshua Bloch's Builder pattern, which is similar to this Pizza example:
public class Pizza {
private int size;
private boolean cheese;
private boolean pepperoni;
...
1
vote
1answer
150 views
Hudson with PMD-Plugin configured for android maven2 project
I'm currently running into a problem using Hudson's PMD-plugin on a maven2-android project.
The part within my POM look like this:
<reporting>
<plugins>
<plugin>
...