我有一个带有 while (true) 的 JSP,其中数据被发送到浏览器。
while (true) {
out.print("pushing some data to browser");
out.flush();
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
}
}
它大部分时间都可以工作,但很少会以 1 秒的间隔将数据发送到浏览器。
而不是排队并同时抛出所有数据。