可以从 这里 下载示例应用程序
假设您将 app1、app2、someotherapp 部署到 devhost:3000 和 testhost:3000 然后可以按如下方式访问这些应用程序
开发实例
http://devhost:3000/app1
http://devhost:3000/app2
http://devhost:3000/someotherapp
测试实例
http://testhost:3000/app1
http://testhost:3000/app2
http://testhost:3000/someotherapp
很多时候,一个应用程序依赖于同一服务器上的其他应用程序,因此,您的应用程序可能包含如下代码片段:
<link title="Stylesheet" href="/someotherapp/style.css" rel="stylesheet" media="screen" type="text/css" />
此外,这些也可以直接访问
http://devhost:3000/someotherapp/style.css
http://testhost:3000/someotherapp/style.css
此外,无论是嵌入式还是使用 jetty-maven-plugin,Jetty 都是本地开发的最佳选择。
在这种情况下,在本地复制整个环境没有意义,而是可以在本地环境中 代理 这些 url,这样 /someotherapp/style.css 将被代理到 http://devhost:3000/someotherapp/style.css
这是实现它的方法。
1) 将
ProxyServlet.Transparent
映射到 /someotherapp/*
2)设置Servlet初始化参数如下
ProxyTo ==>
http://devhost:3000/someotherapp
前缀 ==> /someotherapp
以上两步可以分两种方式完成
使用 Java 配置
<link title="Stylesheet" href="/someotherapp/style.css" rel="stylesheet" media="screen" type="text/css" />
使用 Maven Jetty 插件配置
<link title="Stylesheet" href="/someotherapp/style.css" rel="stylesheet" media="screen" type="text/css" />
src/main/etc/jetty.xml
<link title="Stylesheet" href="/someotherapp/style.css" rel="stylesheet" media="screen" type="text/css" />