0
我有一個看起來像這樣的資源的方法:如何在Dropwizard中使用Servlet 3.0異步方法?
@Path("hard")
@GET
public Response sayHello2(@Context HttpServletRequest request)
throws InterruptedException {
AsyncContext ac = request.startAsync();
Thread.sleep(1000);
ac.complete();
return Response.ok("hello world hard").build();
}
它看起來像代碼貫穿而過,但我似乎無法驗證異步工作在這種情況下?我正確使用這個嗎?