servlet3长连接问题?
public void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException, ServletException { resp.setContentType("text/html;charset=UTF-8"); AsyncContext ctx = req.startAsync(); ctx.setTimeout(100000000); new Thread(new Executor(ctx)).start(); }