jspでのattribute取得
jsp上にattributeにセットしたメッセージが送れません。
java → jspでエラーは起きずページ自体は表示できますが、メッセージは表示されません。
エラーメッセージを表示させるため、ご教授おねがいします。
java
1@WebServlet("/UpdateController") 2public class UpdateController extends HttpServlet { 3 private static final long serialVersionUID = 1L; 4 5 protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { 6 7// 一部省略 8 9 //メッセージ 10 String msg = ""; 11 12 try { 13 14 InsertDAO dao = new InsertDAO(); 15 //Daoでinsert処理 editMenuは値が入ったList(ここでは無視する) 16 int result = dao.insert(editMenu); 17 //レコード件数が0(失敗)とそれ以外(成功)の分岐によってメッセージを変える 18 if(result == 0) { 19 msg = "データ更新に失敗しました。"; 20 } 21 else { 22 msg = "データを更新しました。"; 23 } 24 request.setAttribute("msg", msg); 25 26 request.getRequestDispatcher("/manage.jsp").forward(request, response); 27 28 }catch (Exception e) { 29 e.printStackTrace(); 30 } 31 32 } 33 34} 35
jsp
1 2<%@ page language="java" contentType="text/html; charset=UTF-8" 3 pageEncoding="UTF-8"%> 4 <%@ include file = "manageTag.jsp" %> 5 <%@ page import = "java.util.*, java.io.* "%> 6 <%@ page import = "javax.*" %> 7 <%@ page import = "bean.Bean" %> 8 <jsp:useBean id="select" class="bean.Bean" scope="request" /> 9<!DOCTYPE html> 10<html> 11<head> 12<meta charset="UTF-8" content="text/html; charset=utf-8"> 13<title>管理画面</title> 14<% 15 //一度daoにアクセスしてDB内の商品を全取得しListに格納。 16 //下部のforループ内で表示させる 17 //この処理はこのjspにアクセスするたび行う 18 List<Bean> product = (List<Bean>) request.getAttribute("product"); 19 if(product == null || product.isEmpty()){ 20 response.sendRedirect("ManageHome"); 21 return; 22 } 23 24 //上記のjavaクラスからmsgを取得。msgがなければスルー 25 String msg = ""; 26 if(request.getAttribute("msg") != null){ 27 msg = (String) request.getAttribute("msg"); 28 } 29 30%> 31 32<body> 33 34 <h3>管理者画面</h3> 35 36 //msg("データ更新成功" or "データ更新失敗")があれば赤文字で表示される 37 <% if(msg != "" || !msg.equals("")){ %> 38 <div class="msg" style="color:#FF0461;"><%=msg%></div> 39 <% } %> 40 <div class="container" > 41 <table class="manage_table"> 42 <thread> 43 <tr> 44 <th>商品番号</th> 45 <th>商品名</th> 46 <th>金額</th> 47 <th>税込金額</th> 48 <th></th> 49 <th></th> 50 <th></th> 51 </tr> 52 </thread> 53 54 <tbody> 55 <form id = "form" name = "form"> 56 <% for(int i=0; i < product.size(); i++ ){ %> 57 <tr> 58 <th scope="row"><%=product.get(i).getId() %> </th> 59 <td><%=product.get(i).getName() %></td> 60 <td><%=product.get(i).getPrice() %>円</td> 61 <td><%=product.get(i).getTax_in() %>円</td> 62 <td><button name="id" value="<%=product.get(i).getId() %>" onclick="view()" class="btn">照会</button></td> 63 <td><button name="id" value="<%=product.get(i).getId() %>" onclick="edit()" class="btn">編集</button></td> 64 <td><button name="id" value="<%=product.get(i).getId() %>" onclick="del()" class="btn">削除</button></td> 65 </tr> 66 <% } %> 67 </form> 68 </tbody> 69 70 </table> 71 </div> 72</body> 73</html>
かなり初歩的な質問になります。
よろしくお願いします。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/15 06:52
2020/08/15 16:57
2020/08/16 06:30