
What code analysis tools do you use for your Java projects?
What code analysis tools do you use on your Java projects? I am interested in all kinds static code analysis tools (FindBugs, PMD, and any others) code coverage tools (Cobertura, Emma, and any oth...
Static Analysis tool recommendation for Java? - Stack Overflow
Sep 19, 2008 · 1 You can try JavaDepend, it complement other static analysis tools, and provides a CQL language to query code like database, JavaDepend provides also many interactive views to …
static analysis - Is SonarQube Replacement for Checkstyle, PMD ...
We are working on a web project from scratch and are looking at the following static code analysis tools. Conventions (Checkstyle) Bad practices (PMD) Potential bugs (FindBugs) The project is buil...
java - Perform code analysis in IntelliJ IDEA - Stack Overflow
Jun 23, 2015 · I checked the option 'Perform code analysis'. If I press commit, the code analysis starts, and when its finished i get the following dialog to view the results of the analysis: If I press the review …
What is Dynamic Code Analysis? - Stack Overflow
Sep 8, 2008 · Basically you instrument your code to analyze your software as it is running (dynamic) rather than just analyzing the software without running (static). Also see this JavaOne presentation …
How to find unused/dead code in java projects [closed]
What tools do you use to find unused/dead code in large java projects? Our product has been in development for some years, and it is getting very hard to manually detect code that is no longer in u...
Static code analysis using IntelliJ IDEA - Stack Overflow
May 24, 2017 · Then click "Ok". This will launch the static code analysis. At the bottom of the screen you will then see a window appear that says "Inspection results for... your project name " In this window …
Are there any JavaScript static analysis tools? - Stack Overflow
I'm used to having my compiler complain when I do something stupid like a typo on a variable name but JavaScript has a habit of letting this pass. Are there any static analysis tools for JavaScript?
java - Code complexity analysis tools beyond cyclomatic complexity ...
While cyclomatic complexity is a worthwhile metric, I tend to find it to be a poor tool for identifying difficult to maintain code. In particular, I tend to find it just highlights certain types o...
static - Code analysis tools for Android - Stack Overflow
Jun 30, 2011 · Is there any static code analysis tools for Android that would pick up simple things like NullPointerExceptions from trying to access an object that might be null (without checking for it first)...