GWT.create 与 RPC 服务的目的是什么?
就 RPC 服务而言,GWT.create() 的用途是什么?我知道它允许延迟绑定,但尚未清楚地了解它如何应用于我的 GWT 应用程序中的 RPC 服务。
What is the purpose of GWT.create() in terms of RPC services? I understand that it allows for deferred binding, but haven't managed to clearly understand how that applies to RPC services within my GWT application.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
GWT 自动从
RemoteService
接口及其相应的Async
接口生成 RPC 实现。GWT#create()
是您的应用程序与 GWT 代码生成器创建的具体实现之间的粘合剂。GWT automatically generates an RPC implementation from a
RemoteService
interface and it's correspondingAsync
interface.GWT#create()
is the glue between your application and the concrete implementation(s) created by GWT's code generators.