GWT:在另一个模块内调用RPC服务
我有一个模块 B,它继承了模块 A。当我从 A 内部调用 RPC 服务时,它们工作正常。但是当我在B中调用A的服务时,RPC调用总是失败。我错过了什么吗?
预先感谢您的任何帮助。
I have a module B, which inherits module A. When I call RPC Services from A inside A, they work ok. But when I call the services from A in B, the RPC invocations always fail. Am I missing something?
Thanks in advance for any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在这里找到了问题的答案: http://blog.cloudglow.com/2010/03/making-gwt-rpc-endpoint-independent-of.html
默认的 GWT RPC 服务(Servlet)端点是 @RemoteServiceRelativePath("some_name"),其中在客户端运行时解析为 /module_base/some_name 。这种方法的问题是您的 RPC 端点现在与 GWT 模块绑定。虽然这对于某些情况可能没问题,但不适合我们的情况。因此这篇文章。
我们最终创建了一个 RPC 服务工厂类,它将创建服务端点的静态实例,并使用正确的端点为其播种;像这样的东西:
I've found the answer for my question here: http://blog.cloudglow.com/2010/03/making-gwt-rpc-endpoint-independent-of.html
The default GWT RPC service (Servlet) endpoint is @RemoteServiceRelativePath("some_name"), which resolves to /module_base/some_name at runtime on the client. The issue with this approach is that your RPC endpoint is now tied to GWT Module. While this may be fine for some cases, it was not for our situation. Hence this post.
We ended up creating a RPC services factory class that would create a static instance of the service endpoint and also seed it with the right endpoint; something like this:
还有另一种方法可以解决它。
只需为每个新方法添加一个新的 servlet 映射即可。
There is another way of solving it.
Simply adding a new servlet mapping for each new method.