【发布时间】:2018-07-25 07:06:19
【问题描述】:
我正在尝试解决这个问题,但不幸的是我无法弄清楚。
我在尝试什么?
我正在尝试将位置重定向到 Jersey 2 (JAX-RS 2) Web 应用程序,该应用程序可以像往常一样与请求交互,但不同的是,URL 的其他部分在其中。 带有 Jersey 2 的 Java 应用程序在 tomcat docker 映像上运行。
让我试着像这样更好地解释它:
这就是我所有请求的工作方式:
[IP-address]:8888/myJersey2App/something/function
最近我也加了SSL,让我的服务器和https交互。
假设我的网站的网址是:
所以现在的请求应该是这样的:
https://my.example.com/myJersey2App/something/function
Nginx 配置:
events{
}
http{
server{
listen 80;
listen [::]:80;
server_name my.example.com;
return 301 https://$server_name$request_uri;
}
server {
listen 443 ssl http2;
server_name my.example.com;
###
# ssl configuration ...
###
location / {
proxy_pass http://localhost:8888;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
}
这行得通,因为 Jersey 2 仍然可以,/myJersey2App/something/function 与代码中的路径相同。
Web.xml 配置:
<servlet-mapping>
<servlet-name>Jersey Web Application</servlet-name>
<url-pattern>/myJersey2App/*</url-pattern>
</servlet-mapping>
这是 Jersey 2 如何与请求交互的示例:
@Path("something")
public class JavaClass {
@GET
@Path("/function")
@Produces(MediaType.TEXT_PLAIN)
public Response myFunction() {
return Response.ok().entity("MyFunction!").build();
}
我想要什么?
现在,我必须启动多个 docker,使用相同的应用程序,但使用不同的端口和 url。
这就是它应该被请求的方式:
在端口 7777 上运行:
https://my.example.com/docker1/myJersey2App/something/function
在端口 8888 上运行:
https://my.example.com/docker2/myJersey2App/something/function
在端口 9999 上运行:
https://my.example.com/docker3/myJersey2App/something/function
其实是一样的,只是dockerX在URL里。
这就是我认为的 Nginx 配置:
...
server {
listen 443 ssl http2;
server_name my.example.com;
###
# ssl configuration ...
###
location /docker1 {
proxy_pass http://localhost:7777;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
location /docker2 {
proxy_pass http://localhost:8888;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
location /docker3 {
proxy_pass http://localhost:9999;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
...
不幸的是,我的 Jersey2 应用程序将不再识别 url,因为 dockerX 在 url 内,当然,因为代码中没有提到 dockerX(其中不应该被提及!)
是否可以配置 Nginx 以便我的 Jersey 应用程序仍然可以识别它,即使 url 看起来像这样:
https://my.example.com/docker1/abc/def/ghi/myJersey2App/something/function
我的 Jersey 应用程序仍然应该认识到它只需要以 /myJersey2App/ 开头
我在想类似“用户仍然看到 dockerX URL,但在后台它被这样对待:
http://localhost:8888/myJersey2App/something/function
所以,用户会看到:
https://my.example.com/docker2/myJersey2App/something/function
但是后面是这样处理的:
http://localhost:8888/myJersey2App/something/function
是否可以配置 Nginx,使其像这样工作?
希望你能帮我解决这个问题。
【问题讨论】:
标签: java ubuntu docker nginx jersey-2.0