表題の通りです。
以下のように、データ取得を試みましたがjspでエラーが発生してしまいました。
どうすることもできず、お力をお貸しいただきたくご質問させていただきました。
aテーブルのcontentカラムにはあらかじめ値が入っています。
またエラー箇所としては
【<% ArrayList<ADTO> aList = (ArrayList<ADTO>) request.getAttribute("aList"); %>】
となっています。値が入っていないということなんですかね、、、
DTO
public class ADTO { private String content; public ADTO() { } public String getContent() { return content; } public void setContent(String content) { this.content = content; } }
DAO
public class ADAO { public java.util.ArrayList<ADTO> getACOntent(Connection con, int id) { ArrayList<ADTO> ADTLlist = new ArrayList<ADTO>(); try { String sql = "SELECT * FROM a WHERE user_id = ?"; PreparedStatement ps = con.prepareStatement(sql); ps.setInt(1, id); ResultSet rs = ps.executeQuery(); while (rs.next()) { ADTO ADTO = new ADTO(); ADTO.setContent(rs.getString("content")); ADTLlist.add(ADTO); } } catch (SQLException e) { log("SQLException:" + e.getMessage()); } return ADTLlist; }
サーブレット
@WebServlet("/AServlet") public class AServlet extends HttpServlet{ int id; protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { req.setCharacterEncoding("UTF-8"); Connection con = DBConnection.getConnection(); // idに戻づいたレコードの取得 ADAO ADAO = new ADAO(); ArrayList<ADTO> aList = ADAO.getACOntent(con, id); req.setAttribute("aList", aList); String move = "index.jsp"; req.getRequestDispatcher(move).forward(req, resp); }
jsp
<% ArrayList<ADTO> aList = (ArrayList<ADTO>) request.getAttribute("aList"); %> <p><%= historyList.get(i) %></p> ※<p><%= historyList.get(i) %></p>が89行目になります。
エラー関連
Type Exception Report メッセージ An exception occurred processing JSP page [/index.jsp] at line [98] 説明 The server encountered an unexpected condition that prevented it from fulfilling the request. 例外 org.apache.jasper.JasperException: An exception occurred processing JSP page [/index.jsp] at line [98]
あなたの回答
tips
プレビュー