Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 Java 新闻服务器,并希望客户能够在新闻出现在数据库中时立即接收新闻,而无需重新加载客户的页面。为此,我决定从客户端发出 HTTP 请求,该请求仅在消息可用后才返回响应。但是如果有很多客户端,服务器将无法接受新的请求。那么,有没有什么java技术可以处理呢?
PS新闻服务器只是一个类似的模型,但不是一个完全问题,所以,请更抽象地考虑一下=)
您正在寻找的术语是推送通信。您可以查看Comet或WebSockets 的 Java API。