我做了一个SSH的集成,我想知道Hibernate执行的时候所耗的时间是多少?
比如说 加载一个 实体对象 用多久?
想在spring里面写这样一个AOP.....
具体怎么实现?
在线等....!
------解决方案--------------------
http://aumy2008.javaeye.com/blog/225830
------解决方案--------------------
可以写一个Interceptor实现MethodInterceptor来拦截你的dao嘛
public Object invoke(MethodInvocation invocation) throws Throwable
{
开始时间
invocation.proceed();
结束时间
结束时间-开始时间就是你要的
}