サーブレットとJSPの連携についてです。
例えばA.jspがスタートとし、A.jspで入力された値によってB.jspまたはC.jspに遷移する場合に、サーブレットを介して分岐することはできるのですが、B.jspからA.jspに、またはC.jspからA.jspにボタンを押せば戻るという仕組みが、サーブレットを介して行うにはどうすればいいか全く分かりません。
もちろん、B.jspまたはC.jspの方で直接A.jspのアドレスを指定してボタンを設置すれば戻れるのですが、今後の学びとしてサーブレットを介して行いたいです。宜しくお願い致します。
気になる質問をクリップする
クリップした質問は、後からいつでもMYページで確認できます。
またクリップした質問に回答があった際、通知やメールを受け取ることができます。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
回答1件
0
ベストアンサー
B.JSP及びC.JSPのsubmitのvalue値を一緒にすればよいと思います。
B.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Insert title here</title> </head> <body> <form action="A_Servlet" method="post"> <button type="submit" name="Action" value="GotoA">送信</button> </form> </body> </html>
C.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Insert title here</title> </head> <body> <form action="A_Servlet" method="post"> <button type="submit" name="Action" value="GotoA">送信</button> </form> </body> </html>
A.java(Servlet)
import java.io.IOException; import javax.servlet.RequestDispatcher; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; /** * Servlet implementation class A */ @WebServlet("/A_Servlet") public class A extends HttpServlet { private static final long serialVersionUID = 1L; /** * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response) */ protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // 空欄 } /** * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response) */ protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // 文字コードエンコーディング request.setCharacterEncoding("UTF-8"); response.setCharacterEncoding("UTF-8"); // 行動取得 String action = request.getParameter("Action"); // 遷移先 String url = null; switch(action){ case "GotoA": // A.jspに移動 url = "A.jsp"; break; default: // 想定外の行動 url = "C,jsp"; break; } // 画面遷移 RequestDispatcher rd = request.getRequestDispatcher(url); rd.forward(request, response); } }
投稿2017/05/19 09:14
総合スコア20
あなたの回答
tips
太字
斜体
打ち消し線
見出し
引用テキストの挿入
コードの挿入
リンクの挿入
リストの挿入
番号リストの挿入
表の挿入
水平線の挿入
プレビュー
質問の解決につながる回答をしましょう。 サンプルコードなど、より具体的な説明があると質問者の理解の助けになります。 また、読む側のことを考えた、分かりやすい文章を心がけましょう。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2017/05/19 10:09
2017/05/19 10:17
2017/05/19 10:26