圣杯 +通过控制器处理 gwt 请求
我是 gwt 的新手。我正在尝试集成 gwt+grails。任何人都可以为我提供一个使用 grails 控制器而不是自定义 servlet 处理请求的好示例。如果有人可以指导我,我将非常感激:)
I am new to gwt. I am trying to integrate gwt+grails.Can anybody provide me a good example for handling the request using grails controllers and not a custom servlet.I will be really thankful if anybody can guide me :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通过从 grails 控制器返回 json 取得了一些成功。 查看此处了解更多信息。然后,在 gwt 客户端,创建 javascript“overlay”类型,然后使用 RequestBuilder 向 grails 控制器发出请求以检索 json。 这里是一个很好的教程,但您可以跳过描述的部分如何创建一个 servlet 来返回 json,因为您的 grails 控制器会这样做。
I had some success by returning json from grails controllers. Look here for more info. Then, on the gwt client side, create javascript "overlay" types, and then use RequestBuilder to make a request to the grails controller to retrieve json. Here is a good tutorial, but you can skip the section that describes how to create a servlet to return json, because your grails controllers will do that.