前提・実現したいこと
Javaでいいね機能を作っていますが、何回いいねを押しても1のままで増えません。
押された数だけいいねの数が増えるようにしたいです。
処理の流れのイメージとしては
いいねボタン押す→サーブレットクラスでパラメータ取得→
Logicクラスでいいねを加算→いいねの数をアプリケーションスコープに保存
→JSPでいいねの数を表示です。
発生している問題・エラーメッセージ
何回いいねを押しても1のままで増えません。
特にエラーメッセージが出ないので、どこを修正すればよいのかわかりません。
どこを修正すればよいかご教示いただけないでしょうか。
よろしくお願い致します。
該当のソースコード
YoineServlet
1 protected void doGet(HttpServletRequest request, HttpServletResponse response) 2 throws ServletException, IOException { 3 4 // フォワード 5 RequestDispatcher rd = request.getRequestDispatcher("/yoineView.jsp"); 6 rd.forward(request, response); 7 8 // リクエストパラメーターの取得 9 request.setCharacterEncoding("UTF-8"); 10 String yoine = request.getParameter("action"); 11 12 Yoine y = new Yoine(); 13 14 // いいねボタン押されたら 15 if (yoine != null) { 16 17 // YoineLogicでいいねを加算 18 YoineLogic yl = new YoineLogic(); 19 yl.yoinePlus(y); 20 21 // いいねの数をアプリケーションスコープに保存 22 ServletContext sc = this.getServletContext(); 23 sc.setAttribute("yoine", y); 24 } 25 26 }
yoineView
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<a href="/iine/YoineServlet?action=yoine">いいね!</a> 11${yoine.yoineCount} 12</body> 13</html>
YoineLogic
1package model; 2 3public class YoineLogic { 4 5 // いいねを1足す 6 public void yoinePlus(Yoine y) { 7 y.setYoineCount(1 + y.getYoineCount()); 8 } 9}
Yoine
1package model; 2 3import java.io.Serializable; 4 5// いいねの数を保存するクラス 6public class Yoine implements Serializable { 7 private int yoineCount = 0; 8 9 public void setYoineCount(int yoineCount) { 10 this.yoineCount = yoineCount; 11 } 12 13 public int getYoineCount() { 14 return yoineCount; 15 } 16}
補足情報(FW/ツールのバージョンなど)
開発環境はEclipse2019-9
tomcat9を使用しています。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/24 11:08