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.
中间层和边缘层位于不同的文件夹和包中,所以我不能简单地从边缘层类中调用中间层类。我如何在这两个层之间进行通信?谢谢。
在上述示例中,这两个组件都在服务器(Jetty 和 Netty)上运行。您应该只在它们之间传递 REST 调用来进行通信。例如,您可以启动两个服务器,然后从一个组件向另一个组件发出 GET 请求,让另一个组件侦听该请求并执行相应的操作。希望这可以帮助。