LoginSignup
7
8

More than 5 years have passed since last update.

【JSP】リダイレクトする

Last updated at Posted at 2016-08-14

【目的】

JSPにて別ページへリダイレクトする

【コード】

response.redirect("path")  // pathへリダイレクトする

【環境】

eclipse 4.4.2 / Java 1.8
JSP / Servlet

【構成】

-

【ポイント】

 ・JSPの暗黙オブジェクトresponseを使う
 ・response.redirect("path")
  →pathへリダイレクトする、 pathはサーバー内ページであれば/からはじまるものを指定し、外部ページであればフルパスで指定

【例】

・A.jspからB.jspへリダイレクトする
- web-application
| ・・・
|- A.jsp
|- B.jsp

A.jsp
...
<%
    responce.redirect("/B.jsp"); // B.jspへリダイレクト
%>

【参考】

リダイレクトとフォワードの違い

7
8
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
8