在Spring mvc服务中调用一个方法花费太多时间

时间:2014-03-03 03:31:17

标签: java spring resin

我的英语不太好。代码优先。

    @ResponseBody
    @RequestMapping(value = "testcall")
    public UnifiedResponse testMethodCall(
            HttpServletRequest request,
            HttpServletResponse response) {
        UnifiedResponse unifiedResponse = new UnifiedResponse();
        logger.info("t1:"+System.currentTimeMillis());
        Fun(0,1452,"abd",1);
        logger.info("t2:"+System.currentTimeMillis());
        userSignService.testcall();
        logger.info("t3:"+System.currentTimeMillis());

        return unifiedResponse;
    }


    String  Fun(int i,long l,String s,int ii){
        logger.info("f1:"+System.currentTimeMillis());
        return "";
    }

并记录输出:

 t1:1393816077311
 f1:1393816077312
 t2:1393816077312
 f2:1393816077345
 t3:1393816077410

testcall()是服务中的方法,既没有参数也没有返回值。只输出时间戳。

服务是这样实现的:

@Service
public class UserSignServiceImpl extends BaseServiceImpl implements IUserSignService {
 public void testcall() {
    logger.info("f1:"+System.currentTimeMillis());
 }

}

由注释实例化

@Autowired
IUserSignService userSignService;

这只发生在某些服务器上。在其他情况下,t3-t1小于2ms。所有服务器都使用相同版本的JDK和Resin。

为什么?

调用者和方法之间的堆栈跟踪:

UserSignServiceImpl.testcall() line: 448    
NativeMethodAccessorImpl.invoke0(Method, Object, Object[]) line: not available [native method]  
NativeMethodAccessorImpl.invoke(Object, Object[]) line: 39  
DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: 25  
Method.invoke(Object, Object...) line: 597  
AopUtils.invokeJoinpointUsingReflection(Object, Method, Object[]) line: 319 
ReflectiveMethodInvocation.invokeJoinpoint() line: 183  
ReflectiveMethodInvocation.proceed() line: 150  
TransactionInterceptor.invoke(MethodInvocation) line: 110   
ReflectiveMethodInvocation.proceed() line: 172  
ExposeInvocationInterceptor.invoke(MethodInvocation) line: 90   
ReflectiveMethodInvocation.proceed() line: 172  
JdkDynamicAopProxy.invoke(Object, Method, Object[]) line: 202   
$Proxy49.testcall() line: not available 
OtherController.testMethodCall(HttpServletRequest, HttpServletResponse) line: 6329  

1 个答案:

答案 0 :(得分:0)

原因是拦截器。一旦我将其移除,t3-t2降至1ms。 org.springframework.orm.hibernate3.HibernateTransactionManager 包com.xxx.service中的所有方法都会触发这个manager。我不知道内部机制,但我猜可能是这样的:     服务器进程速度更快,CPU中有12M L3 Cache,速度较慢。服务方法随处调用,使用最频繁。服务器速度越快,缓存越快,处理速度越快。     我不确定。还有别的解释吗?