使用 Jetty 为 Web 应用程序提供服务

发布于 2024-10-04 21:45:03 字数 312 浏览 8 评论 0原文

我第一次使用 Jetty 来部署连接到 Restlet API 的 GWT Web 应用程序,我试图了解使用它的最佳方法。

我想使其可嵌入,以便我可以在运行时更新配置(允许我添加新的域名等)。

我们的 Web 服务器当前运行 Apache 来为 PHP Web 应用程序提供服务,这将是我们第一次部署 GWT 应用程序并使用 Jetty。

是否可以将 Jetty 与 Apache 并行使用(两者都在端口 80 上提供请求),并且由于我嵌入了它,所以我是否可以在 Apache 到达 Jetty 之前使用它?那么 Apache 接收请求并转发到 Jetty 吗?

I am using Jetty for the first time to deploy a GWT web app connecting to a Restlet API and I am trying to understand the best way to use it.

I want to make it embeddable so that I can update config during run-time (allowing me to add new domain names etc).

Our web server currently runs Apache to serve a PHP web app and this will be our first time deploying a GWT app and using Jetty.

Is it possible to use Jetty in parallel with Apache (both serving requests on port 80) and since I am embedding it do I use Apache before it reaches Jetty? So Apache receives request and forwards to Jetty?

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

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

发布评论

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

评论(1

櫻之舞 2024-10-11 21:45:03

两个服务器不能在同一端口上运行。但您可以在同一台机器上运行两者。因此,为码头使用单独的端口。

Jetty通过自己的端口接收请求,不依赖于其他服务器。

Both server cannot run on same port. But you can run both on same machine. So use a separate port for jetty.

Jetty receives the request through its own port and doesn't depend on other server.

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