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.
我有一个 GWT 应用程序,我想知道是否可以在我的 GWT 应用程序中使用 RMI;或者如果我可以让我的 GWT 应用程序有两个不同的服务器。
谢谢!
只需让您的 gwt servlet 成为 RMI 服务器的客户端,然后让客户端与 servlet 对话。
在 servlet 的 init 处找到 RMI 服务器,然后将所有调用定向到那里。
String bindName = _rmiAddress + "/" + SERVER_NAME; _server = (ServiceServerRMI) Naming.lookup(bindName);