Finishing a HttpServletResponse but continue processing

后端 未结 4 1121
不思量自难忘°
不思量自难忘° 2021-02-15 11:14

I have a situation that seems to fit the Async Servlet 3.0 / Comet situation but all I need to do is return a 200 response code (or other) after accepting the incoming parameter

4条回答
  •  野性不改
    2021-02-15 12:07

    You can continue processing in a separate Thread.

    The response is commited once you return from doPost() method.

提交回复
热议问题