建议:使用Spring Boot在应用程序之间进行双向通信

时间:2018-10-19 02:32:05

标签: java spring-boot

我有两个应用程序,应用程序A和应用程序B需要发送两种方式的消息。任何建议如何使用Spring Boot来实现?我不应该使用任何消息服务。请告知可以用来解决问题的方法。

下面是该场景的示意图。

enter image description here

1 个答案:

答案 0 :(得分:0)

您可以考虑使用WebSockets。实施起来很简单。

这里是Spring WebSockets文档的链接:

https://docs.spring.io/spring/docs/5.0.0.BUILD-SNAPSHOT/spring-framework-reference/html/websocket.html#websocket

这是Spring.io教程:

https://spring.io/guides/gs/messaging-stomp-websocket/

这将使您开始使用以浏览器为客户端的服务器。只需复制服务器(而不是使用浏览器),您将获得一个解决方案。