如何配置jetty maven插件以允许在同一端口下部署2个应用程序?

发布于 2024-10-29 12:57:40 字数 808 浏览 5 评论 0原文

我开始使用 maven 和 jetty 开发 2 个网络应用程序。

有人知道如何配置 jetty maven 插件以允许在同一端口下部署 2 个应用程序吗?

当我为第二个应用程序执行 mvn jetty:run 时,我收到预期的错误:

地址已在使用中:绑定

我希望能够点击 http://localhost:8080/appAhttp://localhost: 8080/appB

实际上,这就是我在 pom.xml 中为 appA 和 appB 提供的内容:

        <plugin>
            <groupId>org.mortbay.jetty</groupId>
            <artifactId>maven-jetty-plugin</artifactId>
            <version>6.1.5</version>
            <configuration>
                <scanIntervalSeconds>3</scanIntervalSeconds>
            </configuration>
        </plugin>

谢谢!

I’ am starting to develop 2 web apps with maven&jetty.

Does somebody know how to configure the jetty maven plugin to allow to deploy the 2 apps under the same port?

When I do the mvn jetty:run for the second app I get the expected error:

Address already in use: bind

I want to be able to hit http://localhost:8080/appA and http://localhost:8080/appB

Actually, this is what I have in the pom.xml for boths appA and appB:

        <plugin>
            <groupId>org.mortbay.jetty</groupId>
            <artifactId>maven-jetty-plugin</artifactId>
            <version>6.1.5</version>
            <configuration>
                <scanIntervalSeconds>3</scanIntervalSeconds>
            </configuration>
        </plugin>

Thanks!

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

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

发布评论

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

评论(1

凉风有信 2024-11-05 12:57:40

我认为你不能那样做。对您来说最好的选择是拥有一个独立的jetty(或tomcat)服务器,并直接在该服务器上部署、重新部署和取消部署您的应用程序。

检查这个 Maven 插件,它具有几乎所有 J2EE 容器的功能:Geronimo、Glassfish、JBoss、Jetty、Jonas、Resin、Tomcat 和 Weblogic。

http://cargo.codehaus.org/Maven2+plugin

I think you cannot do that. The best option for you will be to have an standalone jetty (or tomcat) server and deploy, redeploy and undeploy your apps directly on that server.

Check this Maven plugin that has that funcionality for almost all J2EE containers: Geronimo, Glassfish, JBoss, Jetty, Jonas, Resin, Tomcat and Weblogic.

http://cargo.codehaus.org/Maven2+plugin

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