前提・実現したいこと
選択した商品を削除するプログラムを作成しています。
add.jspのラジオボタンのvalue値を${selectList.pos}にしています。このvalue値だと商品を削除していったときにIndexOutOfBoundsExceptionが発生するときがあります。削除するごとに売上明細のラジオボタンのvalue値を更新して値を振り直す方法はありますか。
IndexOutOfBoundsExceptionが発生しているところは、SalesSystemController.javaのRecordManager.remove(form.getPos());とRecordManager.javaのselectList.remove(pos);の部分とエラーメッセージには出ています。
該当のソースコード
SalesSystemController.java
java
1 /** 削除処理 */ 2 3 System.out.println(form.getPos()+"from"); 4 5 /** 6 * fromのposを取得しmodelに格納する。 7 */ 8 model.addAttribute("pos",form.getPos()); 9 /** 10 * RecordManaagerのremoveメソッドを実行させる。 11 */ 12 RecordManager.remove(form.getPos()); 13 14 /** 商品の残りの数による条件分岐 */ 15 16 /** 売上明細の残りが1件以上の処理 */ 17 if (RecordManager.getSelectList().size() > 0) { 18 /** 19 * DELETEをmessage4という名前でmodelに登録する 20 */ 21 model.addAttribute("message4", DELMSG); 22 /** 23 * RecordManagerのselectListを取得し、allListという名前でmodelに登録する。(売上明細) 24 */ 25 model.addAttribute("selectList", RecordManager.getSelectList()); 26 /** 27 * RecordManagerのitemListを取得 itemListという名前でmodelに登録する。 28 */ 29 model.addAttribute("ItemList", RecordManager.getItemList()); 30 /** 31 * RecordManagerのtotalを取得しtotalという名前でmodelに登録する。(合計) 32 */ 33 model.addAttribute("total", RecordManager.getTotal()); 34 /** 35 * 明細追加画面へ 36 */ 37 return ADD; 38 } 39 /** 売上明細の残りが0件のときの処理 */ 40 else { 41 /** 42 * DELETEをmessage4という名前でmodelに登録する 43 */ 44 model.addAttribute("message4", DELMSG); 45 /** 46 * 初期画面へ 47 */ 48 return INIT; 49 } 50 }
RacordManager.java
java
1public final class RecordManager<selectList> { 2 3 /** 商品データ */ 4 private static List<Item> list = new ArrayList<>(); 5 private static List<Item> selectList = new ArrayList<>(); 6 private static Item item; 7 /** totalを定義 */ 8 private static int total = 0; 9 private static long salesId; 10 private static int pos; 11 private static String index; 12 13 14 15 static { 16 list.add(new Item("A00101", "油性ボールペン", 60, 0, 0, 0)); 17 list.add(new Item("A00201", "極細ボールペン", 120, 0, 0, 0)); 18 list.add(new Item("A00301", "蛍光ペン6色セット", 420, 0, 0, 0)); 19 list.add(new Item("A00401", "シャープペンシル", 100, 0, 0, 0)); 20 list.add(new Item("A00501", "鉛筆H(1ダース)", 400, 0, 0, 0)); 21 list.add(new Item("B00101", "無線綴ノートA4", 100, 0, 0, 0)); 22 list.add(new Item("B00201", "リングノートA4", 120, 0, 0, 0)); 23 list.add(new Item("B00301", "領収書", 350, 0, 0, 0)); 24 list.add(new Item("C00101", "はさみ(青)", 128, 0, 0, 0)); 25 list.add(new Item("C00201", "ステープラー", 338, 0, 0, 0)); 26 list.add(new Item("C00301", "2穴パンチ", 128, 0, 0, 0)); 27 list.add(new Item("C00401", "ゼムクリップ", 98, 0, 0, 0)); 28 list.add(new Item("C00501", "消しゴム", 58, 0, 0, 0)); 29 } 30 31 /** 商品名 */ 32 public static List<Item> selectItem(String id, int quantity,int pos) { 33 34 for (int i = 0; i < list.size(); i++) { 35 36 if (id.equals(list.get(i).getId())) { 37 pos = selectList.size(); 38 39 /** Itemを再定義 */ 40 Item item = new Item(id,list.get(i).getName(), list.get(i).getPrice(), quantity, 41 quantity * list.get(i).getPrice(),pos); 42 43 selectList.add(item); 44 45 /** subtotalを定義 */ 46 int subtotal = quantity * list.get(i).getPrice(); 47 total = total + subtotal; 48 49 break; 50 } 51 52 } 53 54 return selectList; 55 56 } 57 58 59 60 /** 選択した売上明細を削除 */ 61 public static void remove(int pos) { 62 /** int型jを定義しselectListの要素内で繰り返し処理*/ 63 for (int j = 0; j < selectList.size();j++) { 64 65 /** 選択したposと同じ順番の要素をselectList内から探す*/ 66 if (pos == selectList.get(j).getPos()){ 67//System.out.println(pos+"I"); 68 69 70 /** 合計からpos番目の小計を引く */ 71 total = total - selectList.get(j).getSubtotal(); 72 73System.out.println(selectList.get(j).getPos()+"R"); 74 75 /** selectListのpos番目を削除 */ 76 selectList.remove(pos); 77 78 break; 79 80 } 81 82 } 83 }
SalesForm.java
java
1public class SalesForm implements Serializable { 2 private static final long serialVersionUID = 1L; 3 4 5 6 /** 商品id */ 7 private String id; 8 /** 商品名 */ 9 private String name; 10 /** 単価 */ 11 private int price; 12 /** 個数 */ 13 @NotNull 14 @Min(1) 15 private int quantity=1; 16 /** 小計 */ 17 private int subtotal; 18 @NotNull 19 private int pos; 20 21 22 23 24public SalesForm() { 25 26} 27/** getterとsetterを定義*/
Item.java
java
1public class Item { 2 3 /** 商品id */ 4 private String id; 5 /** 商品名 */ 6 private String name; 7 /** 単価 */ 8 private int price; 9 /** 個数 */ 10 private int quantity; 11 /** 小計 */ 12 private int subtotal; 13 14 private int pos; 15/** hashCord()とequals()を定義*/ 16/** getterとsetterを定義*/
add.jsp
jsp
1<body> 2 <form:form modelAttribute="salesForm" action="/sales/system"> 3 <div class="header"> 4 <span class="titleName">直太郎オンラインショップ</span> 5 <div class="date"><%=LocalDate.now()%></div> 6 </div> 7 <div class="main"> 8 <div> 9 商品: 10 <form:select path="id"> 11 12 <form:options items="${ItemList}" itemValue="id" itemLabel="name" /> 13 14 </form:select> 15 16 <br /> 17 </div> 18 <div> 19 <span class="itemQuantity">点数:</span> 20 <form:input path="quantity" size="20" /> 21 </div> 22 23 <div class="add"> 24 <div> 25 <input type="submit" name="addition" value="明細追加" /> 26 </div> 27 </div> 28 </div> 29 30 <br> 31 <div class="message"> 32 <font color="#ff0000"> <c:out value="${message1}" /> 33 </font> <font color="#1e90ff"> <c:out value="${message2}" /> <font 34 color="#1e90ff"> <c:out value="${message4}" /> 35 </font> 36 </font> <font color="#ff0000"> <c:out value="${message5}" /> 37 </font> 38 </div> 39 <br> 40 41 42 43 <div class=""> 44 <span class="details">売上明細</span> 45 46 <table class="product"> 47 48 <tr> 49 <th>削除</th> 50 <th>商品ID</th> 51 <th>商品名</th> 52 <th>単価</th> 53 <th>点数</th> 54 <th>小計</th> 55 </tr> 56 <c:forEach items="${selectList}" var="selectList" varStatus="status"> 57 <tr> 58 <th class="itemradiobtn"><form:radiobutton path="pos" 59 label="" value="${selectList.pos}" /></th> 60 <th class="id">${selectList.id}</th> 61 <th class="name">${selectList.name}</th> 62 <th class="price">${selectList.price}</th> 63 <th class="quantity">${selectList.quantity}</th> 64 <th class="subtotal">${selectList.subtotal}</th> 65 <th class="pos">${selectList.pos}</th> 66 </tr> 67 </c:forEach> 68 </table> 69 </div> 70 71 <div class="total"> 72 合計: 73 <fmt:formatNumber groupingUsed="true"> 74 <c:out value="${total}" /> 75 </fmt:formatNumber> 76 円 77 </div> 78 79 80 <div class="footer"> 81 82 <input type="submit" name="remove" value="削除" 83 onclick="remove_row(this)" /> <input type="submit" name="firm" 84 value="確定" /> 85 </div> 86 87 </form:form> 88 89</body>
回答1件
あなたの回答
tips
プレビュー