前提・実現したいこと
あるJSPからあるサーブレットまで遷移したいのですが404エラーが出て出来ません。
最初はパスミスかと思いまたがそういうわけでは無いようです。
何故遷移できないのかを教えてもらいたいです。
発生している問題・エラーメッセージ
java
1HTTPステータス 404 - Not Found 2Type ステータスレポート 3 4メッセージ /sunselcoR1/LoginConterollerServlet 5 6説明 The origin server did not find a current representation for the target resource or is not willing to disclose that one exists.
該当のソースコード
loginPage.jsp
jsp
1<%@ page language="java" contentType="text/html; charset=UTF-8" 2 pageEncoding="UTF-8"%> 3<!DOCTYPE html> 4<html> 5<head> 6<meta charset="UTF-8"> 7<title>ログインページ</title> 8</head> 9<body> 10 <h2>ログインページ</h2> 11 <form action="/sunselcoR1/LoginConterollerServlet" method="post"> 12 <label> 13 ID:<input type="text" name="id" pattern="^[0-9A-Za-z]+$" required>(半角英数)※必須 14 </label><br> 15 <label> 16 パスワード:<input type="password" name="password" pattern="^[0-9A-Za-z]+$" required>(半角英数)※必須 17 </label><br> 18 <input type="submit" value="ログイン"><br> 19 </form> 20 21 <form action="createAccount.jsp" method="POST"> 22 <input type="submit" value="アカウント作成"> 23 </form> 24</body> 25</html>
LoginConterollerServlet.java
java
1package servlet; 2 3import java.io.IOException; 4 5import javax.servlet.RequestDispatcher; 6import javax.servlet.ServletException; 7import javax.servlet.annotation.WebServlet; 8import javax.servlet.http.HttpServlet; 9import javax.servlet.http.HttpServletRequest; 10import javax.servlet.http.HttpServletResponse; 11import javax.servlet.http.HttpSession; 12 13import model.LoginLogic; 14 15/** 16 * ログイン認証処理を制御する 17 * @author emBex Education 18 */ 19@WebServlet("/LoginController") 20public class LoginControllerServlet extends HttpServlet { 21 private static final long serialVersionUID = 1L; 22 23 /** 24 * @see HttpServlet#HttpServlet() 25 */ 26 public LoginControllerServlet() { 27 super(); 28 // TODO Auto-generated constructor stub 29 } 30 31 /** 32 * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response) 33 */ 34 protected void doGet(HttpServletRequest request, HttpServletResponse response) 35 throws ServletException, IOException { 36 doPost(request, response); 37 } 38 39 /** 40 * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response) 41 */ 42 protected void doPost(HttpServletRequest request, HttpServletResponse response) 43 throws ServletException, IOException { 44 45 String url = null; //画面遷移先 46 47 // リクエストオブジェクトのエンコーディング方式の指定 48 request.setCharacterEncoding("UTF-8"); 49 50 // リクエストパラメータの取得 51 String id = request.getParameter("id"); 52 String password = request.getParameter("password"); 53 54 55 56 57 LoginLogic loginLogic=new LoginLogic(id,password); 58 boolean isLogin=loginLogic.execute(); 59 60 if(isLogin) { 61 62 // セッションオブジェクトの取得 63 HttpSession session = request.getSession(); 64 65 // セッションスコープへの属性の設定 66 session.setAttribute("id", id); 67 68 } else { 69 // 認証失敗 70 url = "login-failure.jsp"; 71 } 72 73 // リクエストの転送 74 RequestDispatcher rd = request.getRequestDispatcher("/WEB-INF/menu.jsp"); 75 rd.forward(request, response); 76 } 77 78} 79 80
試したこと
何度も、コードを書き直したり、サーバーをクリーンや再作成を行った。
補足情報(FW/ツールのバージョンなど)
eclipse Photon Release (4.8.0)
Tomcat 9.0.10
回答1件
あなたの回答
tips
プレビュー