
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, …
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 …
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 …
What is the best static code analysis tool for an Android project?
Mar 5, 2012 · 24 I have developed an Android app using the Eclipse IDE and now the code count has grown very huge. I want to do the code review using a static code analysis tool to help me …
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 …
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 …
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 …
What are some interesting, free, open-source Dynamic Analysis …
Jan 1, 2015 · They can perform any kind of analysis, as long as it's dynamic, for example, code coverage, multi-threaded correctness. The results generated should be useful in some way, …
java - Code complexity analysis tools beyond cyclomatic …
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...
Can static analysis detect memory leaks? - Stack Overflow
May 9, 2016 · A well designed/implemented static analysis tool can detect many cases where some code must have a leak, merely by analyzing the code. Tools like Coverity/Prevent do …