static analysis of open source projects [closed] - java

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
we started with static code analysis and I would like to see how we compare with other projects. Now I am aware I could go out and run tools for different OS projects, but I was curious if there is a repository for this data. such as
cyclomatic complexity, code coverage, size of methods, size of classes, scope nesting, etc
thanks
almir

For Java OS projects a free monitoring system with some metrics is available here: http://opensource.quality-gate.com/

Ohloh.net has a few of the metrics you mentioned
FLOSS Metrics may have some
FLOSSmole - includes data from the now-defunct SourceKibitzer though it's a little old (2007), as well as the same metrics run on Debian packages in 2011
Sourcerer may have some

Related

Open source version of Java Compatibility Kit [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I remember in the past there was an infrastructure given to the public to check the compatibility of the JVM and its libraries itself. If I am correct, that was Java Device Test Framework, which now has magically disappeared. In its place is only the Java Device Test Suite, which is actually only for ME edition (and commercial) or Java Compatibility Kit, which again is not open source & publicly available.
What I'd like to accomplish is to use these tests myself on other non "full JDK" JVMs, like Avian, MobiVM, CrossMobile or TotalCross, in order to have a rough estimation of what is missing and what to expect.
Definately I don't need to check the full JDK -- that would be out of concept. What I am more interested is more base functionality, i.e. things that one could find on the java.base (at most). So, is there any (preferably) open source toolkit available?

Tool similar to Dynatrace [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Is there anything out there which is similar to this tool? I'm hoping to do some verification of our caching setup with Hibernate.
I found TPTP, but it seems that the project is dead.
Is there any other good profiling tool out there to verify Hibernate Caching configurations?
You could try jvisualvm, it is bundled with the jvm since 1.6_10.
It should enable you to inspect the heap and stack, even against jvm's that are running on a remote host.
Have you tried yourkit? In J2EE mode it can show you the Database calls you app does. If you dont implement caching properly it will show you the extra calls. It has a free 30 day trial. Should be enough for a one off test

Tool for visualizing Ant build.xml files' dependencies [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I'm taking over a couple of projects with fairly complex build.xml files. Which tool do you recommend to help me visualize all the files' dependencies?
I've found ant2dot.xsl and Vizant. I just wanted to see what other options are out there and what people prefer.
I like Grand best of the three because it handles imported build files the best. Since I rely heavily on imports, this is critical.
In 2007, I had written an article comparing the three along with an example of the output of each. I just checked and not have the libraries have change significantly in that time so the analysis still holds.

JVM benchmarking application [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
We want to compare general performance (CPU, I/O, network, ...) of different JVMs for the same Java version (1.5) in different environments (Windows, Solaris, ...).
Do you know of any JVM benchmarking application which can be used to compare results from different JVMs?
Thank you very much.
We ended up using SPECjvm2008 as we needed something more 'standard' than 'rigorous'.
The goal was to quickly compare performance between different JVM environments and show it to systems group. SPECjvm2008 was quite easy to setup and served well to the task.
The Java Grande Forum Benchmark Suite seems a little outdated, but it's the only one I found which speaks about I/O and network bandwith.

Looking for a Java fuzzing library or fuzzer tool with a good API [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Are there any fuzzer libraries out there for Java?
I'd like to sprinkle fuzzing capabilities into existing Java web-based automated integration tests. I've done a lot of searching but I'm coming up empty for a library that supports HTTP/S. There are a lot of Python tools, but I'd like to stick with Java since that's what the programmers are using.
JBroFuzz essentially has the fuzzing capabilities I need, but I need an API and they haven't released one yet.
A quick search turned up the javafuzz library.
The people with JBroFuzz have made it possible to use it as a library:
http://www.owasp.org/index.php/OWASP_JBroFuzz_Tutorial#How_to_Use_JBroFuzz_as_a_Fuzzing_Library

Categories

Resources