Is it possible in springframework to log the time taken by methods [ selective | all ] automatically. By automatically i mean, i don't want to go to each method and write the log.debug ( "...." ); stuff.
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- Difference between Types.INTEGER and Types.NULL in
You can use AspectJ for this, declare a log pointcut called by wildcard with pre- and post handling by before() and after() advice.
You can take a look at stagemonitor. It is a open source java web application performance monitor. It captures response time metrics, JVM metrics, request details (including a call stack captured by the request profiler) and more. The overhead is very low.
Optionally, you can use the great timeseries database graphite with it to store a long history of datapoints that you can look at with fancy dashboards.
Example Screenshot:
Take a look at the project website to see more screenshots, feature descriptions and documentation.
Note: I am the developer of stagemonitor
Finally i figured out how to do this.
First of all see the post by 'Pascal Thivent', it did a great help to me. After changing your log4j.properties and creating the timingAdvisor what you have to is, binding this adviser to the class you wan to enable the debugging. You have to change your code like this.
earlier code:
New code.
I see that there has already been an accepted answer here, but I'd encourage everyone to take a look at the latest release of Spring Toolsuite (SpringSource's distro of Eclipse). It comes with a profiling utility out of the box, Spring Insight, that provides these exact statistics at runtime in a nice format. Just deploy your app to its internal tomcat, hit a few pages, then go to the /insight servlet and see the time taken in each method called all the way down to the SQL statements that were executed and how long they took.
Here's a link to a nice writeup about Spring Insight that should get you what you want in just a few minutes. http://www.dotkam.com/2009/10/28/spring-insight-in-action-5-minutes-from-scratch/
AOP is what you need here. AOP allows you to add code to your application without modifying the original code. Spring AOP prefers to accomplish this with Proxy objects. Proxy objects use a Decorator Pattern to wrap the original Target object and add code. The Proxy is configured to implement one or more interfaces of the original Target object.
Here, to time an application, the idea is to use the
PerformanceMonitorInterceptor
, one of the performance monitoring classes that ship with the Spring Framework.The first option is to use the Spring class
ProxyFactoryBean
to create Spring AOP Proxy objects. To do this:PerformanceMonitorInterceptor
:RegexpMethodPointcutAdvisor
:ProxyFactoryBean
to proxy your original bean and apply your AdvisorPerformanceMonitorInterceptor
to TRACEBelow a Spring configuration that illustrates these steps:
And the configuration of the Log level for the
PerformanceMonitorInterceptor
:Starting with Spring 2.0, there is another option: using Spring 2.0 XML Schema-based configuration and Spring's AspectJ style pointcut expressions. With the
ProxyFactoryBean
you have to explicitly declare the interfaces you want to proxy; using the<aop:config>
and<aop:advisor>
tags, you can automatically proxy every interface of every object in the bean container.