Servlet asynchronous processing support in App Engine Java 8 standard environment
问题 I'm trying asynchronous processing support in servlet 3.1 with GAE J8 standard environment (no extensible environment). Basically I have a servlet annotated with @WebServlet(name = "MyServletName", urlPatterns = {"/dosomething"}, asyncSupported = true) and to obtain an instance of AsyncContext I call (in doPost method) final AsyncContext asyncContext = httpServletRequest.startAsync(httpServletRequest, httpServletResponse); But asynchronous processing support seems to have some problems in GAE