JAX-WS线程消耗%100 CPU

时间:2011-05-31 19:26:34

标签: java spring jax-ws cpu

我有一个使用Spring和JAX-WS公开的Web服务。我使用jax-ws commons来做到这一点(http://jax-ws-commons.java.net/spring/)。应用程序部署在weblogic 10.3上,有时一些线程似乎被卡住了。我上次获得一个线程转储,我看到6个线程被标记为“STUCK”,并且这些线程消耗了%100 CPU。线程的痕迹如下:

        "[STUCK] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)'" daemon prio=10 tid=0x00002aaaec5f8800 nid=0x3d99 run
nable [0x0000000048ca4000]
    java.lang.Thread.State: RUNNABLE
        at java.util.HashMap.put(HashMap.java:374)
        at java.util.HashSet.add(HashSet.java:200)
        at weblogic.wsee.jaxws.ServerLateInitTube.initializeCopy(ServerLateInitTube.java:56)
        at weblogic.wsee.jaxws.ServerLateInitTube.copy(ServerLateInitTube.java:45)
        at weblogic.wsee.jaxws.ServerLateInitTube.copy(ServerLateInitTube.java:24)
        at com.sun.xml.ws.api.pipe.TubeCloner.copy(TubeCloner.java:102)
        at com.sun.xml.ws.api.pipe.TubeCloner.clone(TubeCloner.java:74)
        at com.sun.xml.ws.server.WSEndpointImpl$2.<init>(WSEndpointImpl.java:251)
        at com.sun.xml.ws.server.WSEndpointImpl.createPipeHead(WSEndpointImpl.java:250)
        at com.sun.xml.ws.api.server.Adapter$Toolkit.<init>(Adapter.java:108)
        at com.sun.xml.ws.transport.http.HttpAdapter$HttpToolkit.<init>(HttpAdapter.java:434)
        at com.sun.xml.ws.transport.http.HttpAdapter.createToolkit(HttpAdapter.java:203)
        at com.sun.xml.ws.transport.http.HttpAdapter.createToolkit(HttpAdapter.java:99)
        at com.sun.xml.ws.api.server.Adapter$1.create(Adapter.java:117)
        at com.sun.xml.ws.api.server.Adapter$1.create(Adapter.java:115)
        at com.sun.xml.ws.util.Pool.take(Pool.java:78)
        at com.sun.xml.ws.transport.http.HttpAdapter.handle(HttpAdapter.java:248)
        at com.sun.xml.ws.transport.http.servlet.ServletAdapter.handle(ServletAdapter.java:140)
        at com.sun.xml.ws.transport.http.servlet.WSServletDelegate.doGet(WSServletDelegate.java:129)
        at com.sun.xml.ws.transport.http.servlet.WSServletDelegate.doPost(WSServletDelegate.java:160)
        at com.sun.xml.ws.transport.http.servlet.WSSpringServlet.doPost(WSSpringServlet.java:52)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
        at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
        at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
        at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
        at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
        at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3594)
        at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
        at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
        at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2202)
        at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2108)
        at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1432)
        at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
        at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)

你有什么想法为什么有线程被困?

4 个答案:

答案 0 :(得分:2)

非同步HashMap的put方法很可能是从多个线程调用的。当从多个线程调用大量HashMap的put方法时,我遇到了同样的问题。

答案 1 :(得分:1)

您的代码中很可能有一个非终止循环,导致这种情况发生。

在调试器下运行并在症状显示时暂停程序以调查每个线程的当前状态,或者使用JDK中的JVisualVM附加到正在运行的程序并获取线程转储。

根据这些知识,您可以决定瓶颈在哪里,然后推断出如何修复它。

答案 2 :(得分:0)

我打开了一个SR到Oracle,他们发送了一个补丁来解决这个问题。问题似乎与补丁有关。

答案 3 :(得分:0)