将现有的 gwt 应用程序集成到 grails 中
我有这样的任务,我想要一些关于如何做到这一点的建议。也许有人已经做过这样的工作或者知道一些有用的文章。 *.gwt.xml 文件去哪里,client/public/server/index.html 文件去哪里,来自 web.xml 的 servlet 映射等等。 谢谢 !
i have such a task and I would like some advices on how to do this. Maybe someone already done such a work or know some usefull articles. Where does *.gwt.xml files go, where does client / public / server / index.html file go, servlet mapping from web.xml, etc, etc.
Thanks !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该查看 Grails GWT 插件 并移植您的应用程序。对于后端,我使用了 GWT-RPC 方式和 Grails DTO 插件,或者你也可以使用您的控制器并在客户端中进行 HTTP RequestFactory 调用并通过 JSON 进行通信。
You should look into the Grails GWT Plugin and port your application over. For back-end I've used both the GWT-RPC way with Grails DTO Plugin or you can use your Controllers and make HTTP RequestFactory calls in your client and communicate via JSON.