在303回答期间失去了标题

时间:2017-02-27 15:25:22

标签: java http http-headers http-status-code-303

我有以下处理程序,将我的请求重定向到另一个处理程序(LoginHandler):

public class ValidationHandler implements HttpHandler
{
    @Override
    public void handle(HttpExchange httpExchange) throws IOException
    {
       // Serve for POST requests only
       if (httpExchange.getRequestMethod().equalsIgnoreCase("POST"))
       {  
           Headers hds = httpExchange.getResponseHeaders();
           hds.add("Content-type","text/html");
           hds.add("Location","/login");
           //WHERE I ADD THE USER
           hds.add("User", "someUser");
           //SEND A 303 to go to another handler (LoginHandler)
           httpExchange.sendResponseHeaders(303,0);  
           httpExchange.close();
       }
   }
}

这是以下Header,LoginHeader:

public class LoginHandler implements HttpHandler
{

   @Override
   public void handle(HttpExchange httpExchange) throws IOException
   {
        //I can't read the header USER on the following line!
       httpExchange.getRequestHeaders().forEach((k,v) -> System.out.println(k + ':' + v));

        httpExchange.sendResponseHeaders(200,data.length());
        httpExchange.getResponseBody().write(data.getBytes());
        httpExchange.close();
   }
}

我无法读取requestHeaders我添加的Header USER。 我做错了什么?

提前致谢。

1 个答案:

答案 0 :(得分:1)

响应标头不遵循http重定向。您可以将其作为Cookie或查询参数包含在Location标头中。

将您的位置更改为:

hds.add("Location","/login?User=someUser");

或将其添加为SetCookie标头:

hds.add("Set-Cookie", "User=someuser")

Set-Cookie将告诉浏览器存储cookie并将其包含在返回服务器的所有请求中。将其与您的位置一起包含在处理重定向时可以访问一次。