不使用 Java 后端时使用 GWT 进行开发(在 Eclipse 中)

发布于 2024-12-10 17:45:07 字数 396 浏览 0 评论 0原文

我想在开发 SmartGWT 前端时使用 python 后端。为了使调试正常工作,我想我需要在 Eclipse 中运行开发服务器,这意味着 Web 服务器将在 Eclipse 中运行。

我的 python (Django) 后端需要服务数据请求,我希望它不是跨域问题,但是跨域似乎也需要端口匹配。

解决这个问题最简单的方法是什么?一直在考虑使用虚假域名设置我的主机文件,然后有两个条目,一个用于数据,一个用于 js。但是,这需要在计算机上设置第二个 IP,因为端口也必须匹配。 如果我希望其他人能够看到我不能使用本地主机和我的外部IP的页面,因为他们无法访问我的本地主机。

是否有一些更简单的设置? 是否有一些简单的代理部分可以放入 eclipse 开发服务器中,将数据请求代理到不同的服务器? 还有其他想法吗?

I want to use a python backend while developing a SmartGWT front end. In order to get the debugging working correctly, I think I need the dev server running in eclipse which means the webserver will be running in eclipse.

My python (Django) backend needs to serve the requests for the data and I'd like it to not be a cross-domain issue, however cross-domain also seems to require the ports match too.

What is the simplest way to work around this? Been thinking about setting up my hosts file with a bogus domain and then have two entries, one for data, one for js. But, this requires setting up a second IP on the machine because the ports have to match too.
If I want anyone else to be able to see the pages I can't use localhost and my external IP since they won't be able to get to my localhost.

Is there some simpler setup?
Is there some simple proxy piece I could drop into the eclipse dev server that would proxy the data requests to a different server?
Other ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

故事灯 2024-12-17 17:45:07

为此,我在 gwt 设置中使用代理 servlet。

我正在使用 jetty util 工件中的 tomcat 代理 servlet:

<dependency>
    <groupId>org.mortbay.jetty</groupId>
    <artifactId>jetty-util</artifactId>
    <version>6.1.22</version>
    <scope>runtime</scope>
</dependency>

我的 web.xml 如下所示:

<servlet>
    <servlet-name>JettyProxy</servlet-name>
    <servlet-class>org.mortbay.servlet.ProxyServlet$Transparent</servlet-class>
    <init-param>

        <param-name>ProxyTo</param-name>
        <param-value>http://yourserver</param-value>
    </init-param>
    <init-param>

        <param-name>Prefix</param-name>
            <!-- will be removed from request -->
        <param-value>/prefix/</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>JettyProxy</servlet-name>
        <url-pattern>/prefix/*</url-pattern>
    </servlet-mapping>

如果您收到有关某些 _context 变量的奇怪错误,请确保 jetty-util.jar 位于 GWT SDK 之前的类路径中。

I am using a proxy servlet in my gwt setup for this purpose.

I am using a tomcat proxy servlet from jetty util artifact:

<dependency>
    <groupId>org.mortbay.jetty</groupId>
    <artifactId>jetty-util</artifactId>
    <version>6.1.22</version>
    <scope>runtime</scope>
</dependency>

My web.xml looks like this:

<servlet>
    <servlet-name>JettyProxy</servlet-name>
    <servlet-class>org.mortbay.servlet.ProxyServlet$Transparent</servlet-class>
    <init-param>

        <param-name>ProxyTo</param-name>
        <param-value>http://yourserver</param-value>
    </init-param>
    <init-param>

        <param-name>Prefix</param-name>
            <!-- will be removed from request -->
        <param-value>/prefix/</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>JettyProxy</servlet-name>
        <url-pattern>/prefix/*</url-pattern>
    </servlet-mapping>

If you get some weired error about some _context variable, make sure that the jetty-util.jar is in your classpath before the GWT SDK.

攒眉千度 2024-12-17 17:45:07

最简单的方法是如果您的开发计算机上同时拥有后端和前端。
对于我的项目,我在前端使用 GWT,在后端使用cherrypy (python)。

我在 Eclipse 中设置了这两个项目,并且在开发时我为 Cherrypy 后端启动了一个调试器,并为 GWT 前端启动了一个调试器。所以我基本上可以同时调试后端和前端。效果真的很好。
python 后端和 gwt 前端之间的通信是通过 RequestBuilder (JSON) 完成的,这种设置的好处是我可以直接测试后端的数据通信,而无需 GWT。

因此,开发 URL 通常类似于: http://localhost:8080/?gwt。 codesvr=127.0.0.1:9997

端口 8080 由我的cherrypy 后端使用。

The easiest way to do it is if you have both backend and frontend on your development machine.
For my projects I am using GWT on the frontend and cherrypy (python) on the backend.

I set up both projects in eclipse and when developing I start a debugger for the cherrypy backend and one for the GWT frontend. So I can basically debug backend and frontend at the same time. Works really good.
Communication between python backend and gwt frontend is done via RequestBuilder (JSON) and the good thing about this setup is that I can test the backend's data communication directly without GWT.

So the development url is usually something like: http://localhost:8080/?gwt.codesvr=127.0.0.1:9997

Port 8080 is used by my cherrypy backend.

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