我正在使用 Undertow 创建一个简单的应用程序。
public class App {
public static void main(String[] args) {
Undertow server = Undertow.builder().addListener(8080, "localhost")
.setHandler(new HttpHandler() {
public void handleRequest(HttpServerExchange exchange) throws Exception {
Thread.sleep(5000);
exchange.getResponseHeaders().put(Headers.CONTENT_TYPE, "text/plain");
exchange.getResponseSender().send("Hello World");
}
}).build();
server.start();
}
}
我打开了一个浏览器选项卡localhost:8080
,我也打开了第二个选项卡localhost:8080
这次第一个选项卡将等待 5 秒,第二个选项卡将等待 10 秒
为什么会这样?