본문 바로가기
JSP/error

[JSP/error]오류 : Cannot invoke "java.util.List.size()" because "boardList" is null

by starfish22 2023. 2. 13.
728x90

문제

쉽게 배우는 JSP 웹 프로그래밍 교재의 예제 소스를 가져와 실행시켜 보니 boardList에서 오류가 나왔다.

 

해결

기존의 BoardDAO.java 파일에서 83번째 줄

pstmt = conn.prepareStatement(sql);

이 부분을

pstmt = conn.prepareStatement(sql, ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_UPDATABLE);

변경

728x90

댓글