GWT:在另一个模块内调用RPC服务

发布于 2024-10-21 11:48:04 字数 104 浏览 3 评论 0原文

我有一个模块 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

ヤ经典坏疍 2024-10-28 11:48:04

我在这里找到了问题的答案: 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 服务工厂类,它将创建服务端点的静态实例,并使用正确的端点为其播种;像这样的东西:

public class ServicesFactory
{
public static final RPCServiceAsync RPCService = GWT.create(RPCService.class);

static
{
((ServiceDefTarget) RPCService).setServiceEntryPoint(GWT.getHostPageBaseURL() + RPCService.END_POINT);
}
}

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:

public class ServicesFactory
{
public static final RPCServiceAsync RPCService = GWT.create(RPCService.class);

static
{
((ServiceDefTarget) RPCService).setServiceEntryPoint(GWT.getHostPageBaseURL() + RPCService.END_POINT);
}
}
ま昔日黯然 2024-10-28 11:48:04

还有另一种方法可以解决它。
只需为每个新方法添加一个新的 servlet 映射即可。

<servlet-mapping>
    <servlet-name>serverName</servlet-name>
    <url-pattern>/Module1</url-pattern>
</servlet-mapping>
<servlet-mapping>
    <servlet-name>serverName</servlet-name>
    <url-pattern>/Module2</url-pattern>
</servlet-mapping>

There is another way of solving it.
Simply adding a new servlet mapping for each new method.

<servlet-mapping>
    <servlet-name>serverName</servlet-name>
    <url-pattern>/Module1</url-pattern>
</servlet-mapping>
<servlet-mapping>
    <servlet-name>serverName</servlet-name>
    <url-pattern>/Module2</url-pattern>
</servlet-mapping>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文