jsp上で選択したチェックボックスの値(id)をjsp→サーブレット→DAOの順で渡し、
idで指定したテーブルをデータベースから削除したいです。
■■
現状は、削除したい情報を選択し削除ボタンを押し、確認ダイアログが出て
OKボタンを押すと、500エラー(null)が出てしまいます。
for servlet [VisitorDelete] in context with path [/App] threw exception [null] with root cause
jsp
1<script> 2 function delete_btn() { 3 4 const arr = []; 5 const del = document.getElementsByName("del"); 6 7 for (let i = 0; i < del.length; i++) { 8 if (del[i].checked) { 9 arr.push(del[i].value); 10 } 11 } 12 13 if(arr.length == 0){ 14 alert("削除する予約情報を選択してください。"); 15 window.reload(); 16 } 17 18 document.getElementById("span2").textContent = arr; 19 20 var ret = confirm("選択された" + arr.length + "件の予約情報を削除します。\nよろしいでしょうか?"); 21 22 if (ret == true) { 23 confirm("選択された" + arr.length + "件の予約情報を削除しました。"); 24 document.deleteForm.submit(arr); 25 26 } else { 27 document.getElementById("checkbox").checked = false; 28 } 29 } 30 31 </script> 32 33 34 35 <form id="delete" method="post" name="deleteForm" action="<%= request.getContextPath() %>/VisitorReservation/delete"> 36 <label class="ECM_CheckboxInput"> 37 <input class="ECM_CheckboxInput-Input" id="checkbox" type="checkbox" name="del" value="<%= yoyaku.getYoyakuId() %>"> 38 <span class="ECM_CheckboxInput-DummyInput"></span><span class="ECM_CheckboxInput-LabelText"></span> 39 </label> 40 </form>
java
1 /** 2 * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response) 3 */ 4 protected void doPost(HttpServletRequest request, HttpServletResponse response) 5 throws ServletException, IOException { 6 // TODO Auto-generated method stub 7 8 RequestDispatcher dispatcher = null; 9 String[] idGet = request.getParameterValues("del"); 10 11 for(int i=0; i<idGet.length; i++) { 12 13 try { 14 YoyakuDao.getInstance().DeleteYoyakuData(idGet[i]); 15 }catch (SQLException e) { 16 e.printStackTrace(); 17 throw new ServletException(); 18 } 19 } 20 21 dispatcher = request 22 .getRequestDispatcher("/jsp/visitor/delete.jsp"); 23 dispatcher.forward(request, response); 24 25 } 26 27}
java
1 public void DeleteYoyakuData(String idGet) 2 throws SQLException { 3 StringBuffer SQLBuff = new StringBuffer(); 4 5 SQLBuff.append("DELETE T_YOYAKU "); 6 SQLBuff.append(" FROM T_YOYAKU "); 7 SQLBuff.append(" WHERE "); 8 SQLBuff.append(" YOYAKU_ID = " + idGet + ""); 9 10 SqliteManager.Delete(SQLBuff.toString()); 11 12 }
IDが上手く渡せていないと思うんですが、
どう手を付けていいのかわからないのでご教授願います。
あなたの回答
tips
プレビュー