Jetty响应不必要的重定向

时间:2014-04-24 01:52:24

标签: java nginx maven-jetty-plugin

我使用jetty-maven-plugin来运行我的Web应用程序:

<plugin>
    <groupId>org.mortbay.jetty</groupId>
    <artifactId>jetty-maven-plugin</artifactId>
    <version>8.1.12.v20130726</version>
    <configuration>
        <webApp>
          <contextPath>/test</contextPath>
        </webApp>               
    </configuration>
</plugin>       

接下来,我使用nginx来代理请求:

server {
   server_name q.ru;
   listen 80;

   location / {
      proxy_http_version 1.1;
      proxy_pass http://127.0.0.1:8080/test;
      proxy_set_header        X-Real-IP       $remote_addr;
      proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
  }
}

现在,我打开浏览器,向http://q.ru发送请求(我的/ etc / hosts中的localhost)。 我得到了无限的重定向。

这是从nginx到jetty的HTTP对话转储请求,以及jetty响应:

GET /test HTTP/1.1
Host: 127.0.0.1:8080
Connection: close
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Firefox/24.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: ru-RU,ru;q=0.8,en-US;q=0.5,en;q=0.3
Accept-Encoding: gzip, deflate

HTTP/1.1 302 Found
Location: http://127.0.0.1:8080/test/
Connection: close
Server: Jetty(8.1.12.v20130726)

主机和路径在请求中准确指定。那么为什么jetty会发送302重定向?

1 个答案:

答案 0 :(得分:1)

我很确定this stackoverflow question可能对你有所帮助,我一直在寻找类似的东西。

希望有所帮助。

干杯