A、B 两个系统。A 在内网内,B 在公网内。A 可以主动连 B,但是 B 不能主动连 A。现在的需求是:B 需要主动获取一些数据给 A。
1
cloud107202 2018-04-17 12:39:55 +08:00
用 http long polling??
A 永远跟 B 持有一个 http 连接,超时时间设到最大。B 有数据就触发 response 返回数据(可以通过 batch 优化) A 这边连接一旦 response 立刻发起一个新的 http 请求过去 |
2
vncntd 2018-04-17 12:59:21 +08:00
spring integration
|