1

我有一组工作线程,我在其中为长时间运行的作业运行匿名类可运行文件。这些线程在响应返回后持续很长时间,但似乎创建这些 Runnables 的线程仍然存在,并且考虑在使用中。

为了实现的缘故,这里是代码......用更少的词。

@Path("/myawesomeApp")
public class TheThing {
    static final TheWorkerPool pool = new TheWorkerPool();
    static final HashMap<Integer,String> map = new ConcurrentHashMap<Integer,String>();
    static int mapIdx = 0;

    @Context
    HttpServletContext context;

    @POST
    Integer doStuff() {
        Integer thisVariable = mapIdx++;     
        pool.enqueue(new Runnable() {
            public void run() {
                map.put(thisVariable, OtherStuff.dothings());
            }
        });
    }
}

他们每个人都坚持以下几点:

  java.lang.Thread.State: RUNNABLE
    at org.apache.tomcat.jni.Socket.recvbb(Native Method)
    at org.apache.coyote.ajp.AjpAprProcessor.readt(AjpAprProcessor.java:1049)
    at org.apache.coyote.ajp.AjpAprProcessor.readMessage(AjpAprProcessor.java:1140)
    at org.apache.coyote.ajp.AjpAprProcessor.process(AjpAprProcessor.java:368)
    at org.apache.coyote.ajp.AjpAprProtocol$AjpConnectionHandler.process(AjpAprProtocol.java:378)
    at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1509)
    at java.lang.Thread.run(Thread.java:619)
4

1 回答 1

0

我猜在这种情况下根本不会调用 TheThing 的代码。请参阅AjpAprProcessor 的源代码。它停留在读取一些必需的 http 请求的标头上。

因此检查 ajp 配置并确保客户端正确发送 http 请求。

尝试在 apache 端启用日志记录。

于 2012-08-28T06:08:14.333 回答