File: context.xml
"http://www.springframework.org/dtd/spring-beans.dtd">
File: Main.java
import org.aopalliance.intercept.MethodInterceptor;
import org.aopalliance.intercept.MethodInvocation;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.xml.XmlBeanFactory;
import org.springframework.core.io.ClassPathResource;
import org.springframework.util.StopWatch;
public class Main {
public static void main(String[] args) throws Exception {
BeanFactory beanFactory = new XmlBeanFactory(new ClassPathResource("context.xml"));
MtBean testBean = (MtBean) beanFactory
.getBean("afterBean");
testBean.showValues();
}
}
class MtBean {
private String firstName;
public String getFirstName() {
return this.firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public void showValues() {
System.out.println("First name: " + this.firstName);
}
}
class SimpleProfilingAroundAdvice implements MethodInterceptor {
public Object invoke(MethodInvocation invocation) throws Throwable {
StopWatch stopWatch = new StopWatch();
stopWatch.start();
try {
return invocation.proceed();
} finally {
stopWatch.stop();
System.out.println(stopWatch.prettyPrint());
}
}
}
Spring-ImplementsMethodInterceptorToCreateProfilingAdvice.zip( 2,895 k)