(HttpServletRequest req, HttpServletResponse resp)
| 29 | private static final long serialVersionUID = 1L; |
| 30 | |
| 31 | @Override |
| 32 | protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { |
| 33 | final AsyncContext actx = req.startAsync(); |
| 34 | actx.setTimeout(30*1000); |
| 35 | actx.dispatch("/jsp/async/async3.jsp"); |
| 36 | } |
| 37 | |
| 38 | |
| 39 | } |
nothing calls this directly
no test coverage detected