调试需要访问外部资源的 GWT 应用程序(同源策略)
我们有一个 GWT 应用程序,它通过异步 JavaScript 从单独的 servlet 中获取一些资源。在生产中,这不会造成任何问题,因为生产者 servlet 和消费者 GWT 应用程序将驻留在同一服务器上,但是对于开发,我找不到一种方法来实现这一点,因为我们正在使用同源策略。
作为临时解决方案,我在 Tomcat 上运行 servlet,然后编译 GWT 应用程序并将其部署到同一个 Tomcat 实例 - 这当然有效,并且它确实允许我附加 Eclipse 进行调试。然而,有一个小问题,即每次修改的构建时间约为 40 秒。
我们希望能够通过 GWT 的托管模式和 OOPHM 进行调试 - 有人能找到一种方法让我们做到这一点吗?
谢谢大家!
We have a GWT application which draws some resources from a separate servlet via async javascript. In production this poses no problems as both the producer servlet and the consumer GWT app will reside on the same server, however for development I can't find a way to make this happen as we are head to head with the Same Origin Policy.
As a temporary solution I have the servlet running on Tomcat, and I compile and deploy the GWT app to that same Tomcat instance - this of course works, and it does allow me to attach Eclipse for debugging. However there is the slight problem of the 40 second or so build time for each modification.
We would like to be able to debug via GWT's hosted mode w/ OOPHM - can anybody see a way for us to do this?
Thanks all!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 gwt 开发模式的 -noserver 选项,它允许您使用任何 servlet 容器运行服务器代码。
you could use the -noserver option of gwt dev mode, which lets you run your server code with any servlet container.
也许您可以将生产者 servlet 部署到 Jetty。
http://www.enavigo.com/ 2008/08/29/deploying-a-web-application-to-jetty/
我认为 Jetty 主目录大部分位于 Eclipse 目录中的某个位置。简单的文件搜索可能会有所帮助。
祝你好运!
Maybe you can deploy the producer servlet to Jetty.
http://www.enavigo.com/2008/08/29/deploying-a-web-application-to-jetty/
I think the Jetty home most reside somewhere in the Eclipse directories. A simple file search might help.
Good luck!
如果您只需要一个 servlet,为什么不在 web.xml 中定义它并像往常一样启动开发模式呢?
If you need just a servlet, why not define it in web.xml and start dev mode as usual?