Servlet的异步处理数据操作:
通过异步处理,可以使在不同线程内传递Request、Response等Web对象;
如下所示:
public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
System.out.println("Servlet执行开始时间:"+new Date());
**AsyncContext context = request.startAsync();**
new Thread(new Executor(context)).start();
System.out.println("Servlet执行结束时间:"+new Date());
}
public class Executor implements Runnable{
**private AsyncContext context;
public Executor(AsyncContext context ) {
this.context = context;
}**
@Override
public void run() {
//执行相关复杂业务
try {
Thread.sleep(1000*10);
**context.getRequest();
context.getResponse();**
System.out.println("业务执行完成时间:"+new Date());
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
點(diǎn)擊查看更多內(nèi)容
2人點(diǎn)贊
評(píng)論
評(píng)論
共同學(xué)習(xí),寫下你的評(píng)論
評(píng)論加載中...
作者其他優(yōu)質(zhì)文章
正在加載中
感謝您的支持,我會(huì)繼續(xù)努力的~
掃碼打賞,你說多少就多少
贊賞金額會(huì)直接到老師賬戶
支付方式
打開微信掃一掃,即可進(jìn)行掃碼打賞哦