16

Like the title said:

Is there something similar to the mini-mvc-profiler for Java?

I'm looking for something that can be used in a Struts or Spring MVC application and that shows a quick performance overview on every page in our DEV environment.

cringe
  • 13,401
  • 15
  • 69
  • 102

3 Answers3

5

java-mini-profiler

This is one I wrote which takes from gae-java-mini-profiler but works for non-gae applications. It also some extra features which can be optionally enabled such as profiling annotation and sql profiling.

alvins
  • 226
  • 3
  • 5
1

The simplest can be Java Interactive profiler

Another interesting and effective one is glassbox

It depends on case to case basis. Sometimes even using a simple performance logging library like per4j works.

Manish Singh
  • 3,463
  • 22
  • 21
1

I would recommend: gae-java-mini-profiler

It has been posted here earlier: Is there something similar to mini-mvc-profiler for Java?

Community
  • 1
  • 1
Tommy
  • 4,011
  • 9
  • 37
  • 59