0

ウェルカムファイルがサーブレットである Web サイトがあります。

<welcome-file-list>
    <welcome-file>Main</welcome-file>
 </welcome-file-list>

サーブレットはデータベースからデータを収集し、JSP に送信します。すべてのリクエストをメインのサーブレットから https にリダイレクトするにはどうすればよいですか? 何か案が???ありがとう

4

1 に答える 1

3

ヒントをくれたEng.Fouadに感謝し ます...問題は解決しました

//Check if the requested scheme is http then redirect it to https
if(request.getScheme().equals("http"))
{
    response.sendRedirect("https://www.mysite.com");
}
//If the request is not http but https then collect the data and send to jsp
else
{
        //Collect the data from the database and send it to JSP
        request.setAttribute("data",data);
        RequestDispatcher rd = request.getRequestDispatcher("/main.jsp");
    rd.forward(request, response);
}
于 2013-02-25T14:18:11.440 に答える