调试需要访问外部资源的 GWT 应用程序(同源策略)

发布于 2024-11-07 12:48:53 字数 356 浏览 0 评论 0原文

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

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

发布评论

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

评论(3

撑一把青伞 2024-11-14 12:48:53

您可以使用 gwt 开发模式的 -noserver 选项,它允许您使用任何 servlet 容器运行服务器代码。

you could use the -noserver option of gwt dev mode, which lets you run your server code with any servlet container.

怎樣才叫好 2024-11-14 12:48:53

也许您可以将生产者 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!

对你的占有欲 2024-11-14 12:48:53

如果您只需要一个 servlet,为什么不在 web.xml 中定义它并像往常一样启动开发模式呢?

If you need just a servlet, why not define it in web.xml and start dev mode as usual?

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