前提・実現したいこと
スケジュール管理ができるカレンダーを作成中です。
カレンダーjsp画面にある予定入力フォームに予定を入力すると処理サーブレットを通して
カレンダーjsp画面に予定が反映されるというシステムを作成中です。
発生している問題・エラーメッセージ
現在初回の入力は反映されるのですが、2回目を送信すると
1回目の予定が消去される問題が発生しています。
### 該当のソースコード if(session.getAttribute("map") == null) { HashMap<Integer,String> map = new HashMap<Integer,String>(); map.put(tb.getDay(), tb.getTask()); session.setAttribute("map",map); getServletContext().getRequestDispatcher("/calendar.jsp").forward(req, res); }else { map.put(tb.getDay(), tb.getTask()); session.setAttribute("map",map); getServletContext().getRequestDispatcher("/calendar.jsp").forward(req, res);
ソースコード
// カレンダーに予定を記入する部分 else if (a.equals("2")) { // beanの宣言 TaskBean tb = new TaskBean(); String task = req.getParameter("task"); // 予定 tb.setTask(task); String d = req.getParameter("day"); // 日 int day = Integer.parseInt(d); tb.setDay(day); // mapの宣言 HashMap<Integer,String> map = new HashMap<Integer,String>(); HttpSession session = req.getSession(); if(session.getAttribute("map") == null) { map.put(tb.getDay(), tb.getTask()); session.setAttribute("yotei",tb); session.setAttribute("map",map); getServletContext().getRequestDispatcher("/calendar.jsp").forward(req, res); }else { map.put(tb.getDay(), tb.getTask()); session.setAttribute("yotei",tb); session.setAttribute("map",map); getServletContext().getRequestDispatcher("/calendar.jsp").forward(req, res); } }
### 試したこと 2回目に画面入力されると同じ処理を通るので新しくmapが作られ保持が消えるのかと考えて hashmapをif文の中に入れてみたのですが、else{}内で値が取れない状態になったりと、 どうしていいのかわからない状態です。 2回目に通るときは既存のmapに取得内容をputして画面遷移ができればいいと思うのですが どうすればいいのでしょう… ### 補足情報(FW/ツールのバージョンなど) エクリプス
回答2件
あなたの回答
tips
プレビュー