web-dev-qa-db-ja.com

サーブレットを使用してリクエストをリダイレクトし、「setHeader」メソッドが機能しない

私はサーブレット開発が初めてで、電子書籍を読んでいて、次を使用して別のWebページにリダイレクトできることがわかりました。

setHeader("Location", "http://www.google.com")

しかし、私はこのコードを次のように書いているので、これは機能していません。

import Java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;

public class ModHelloWorld extends HttpServlet{
        public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException{
//              response.addHeader("Location", "http://www.google.com");
                response.setHeader("Location", "http://www.google.com");
                response.setContentType("text/html");
                PrintWriter pw = response.getWriter();
                pw.println("<html><head><title>Modified Hello World</title></head><body>");
                pw.println("<h1>");
                //getInitParameter function reads the contents ot init-param elements.
                pw.println(getInitParameter("message"));
                pw.println("</h1>");
                pw.println("</body></html>");
                pw.close();
        }
}

私は私のプログラムを使用してヘッダーをチェックし、以下のようなウェブページのヘッダーを取得しました:

import Java.net.*;
import Java.io.*;
class getHeaders{
    public static void main(String args[]){
        URL url = null;
        URLConnection urc = null;
        try {
            url = new URL(args[0]);
            urc = url.openConnection();
            for(int i=0 ; ; i++) {
                String name = urc.getHeaderFieldKey(i);
                String value = urc.getHeaderField(i);
                if(name == null && value == null)//both null so end of header
                    break;
                else if(name == null){//first line of header{
                    System.out.println("Server HTTP version, Response code: ");
                    System.out.println(value);
                    System.out.println("ENd of first header field");
                } else {
                    System.out.println("name of header is: " + name + " and its value is : " + value);
                }
            }
        } catch(MalformedURLException e){
            System.out.println("Malformed URL " + e.getMessage());
        } catch(IOException e){
            e.printStackTrace();
        }
    }
}

そして、私は次のように出力を得ています:

Server HTTP version, Response code: 
HTTP/1.1 200 OK
ENd of first header field
name of header is: Server and its value is : Apache-Coyote/1.1
name of header is: Location and its value is : http://www.google.com
name of header is: Content-Type and its value is : text/html
name of header is: Content-Length and its value is : 101
name of header is: Date and its value is : Sat, 05 Mar 2011 15:27:29 GMT

しかし、ブラウザからグーグルのページにリダイレクトされませんでした。

前もって感謝します:)

24
codeomnitrix

ご覧のとおり、応答はまだHTTP/1.1 200 OK。リダイレクトを示すには、302ステータスコードを送り返す必要があります。

response.setStatus(HttpServletResponse.SC_FOUND); // SC_FOUND = 302
21
casablanca

やばい!それはあなたがリダイレクトする方法ではありません。それははるかに簡単です:

public class ModHelloWorld extends HttpServlet{
    public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException{
        response.sendRedirect("http://www.google.com");
    }
}

また、サーブレット内でHTMLコードを記述することは悪い習慣です。これらすべてのマークアップをJSPに入れ、次を使用してJSPを呼び出すことを検討する必要があります。

response.sendRedirect("/path/to/mynewpage.jsp");
69
adarshr

または、次の方法を試すこともできます。

resp.setStatus(301);
resp.setHeader("Location", "index.jsp");
resp.setHeader("Connection", "close");
0
Sairam