如何配置jetty maven插件以允许在同一端口下部署2个应用程序?
我开始使用 maven 和 jetty 开发 2 个网络应用程序。
有人知道如何配置 jetty maven 插件以允许在同一端口下部署 2 个应用程序吗?
当我为第二个应用程序执行 mvn jetty:run 时,我收到预期的错误:
地址已在使用中:绑定
我希望能够点击 http://localhost:8080/appA 和 http://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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你不能那样做。对您来说最好的选择是拥有一个独立的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