ホームページ >ウェブフロントエンド >htmlチュートリアル >ページのリダイレクト_html/css_WEB-ITnose
1 つ目の実装方法:
678572ad9da19314f4cfa0e5e6a319ee で include.jsp ページへのリダイレクト機能を実現できます
サーブレットのページ リダイレクトと同等:
RequestDispacher rd = request.getRequestDispacher("include.jsp");rd.forward(request, response);2 つ目の実装方法:
response.sendRedirect("include.jsp");2 番目の実装メソッド: 同等:
response.setStatus(302);response.setHeader("location", "include.jsp");2 つの違い: