728x90
문제
쉽게 배우는 JSP 웹 프로그래밍 교재의 예제 소스를 가져와 실행시켜 보니 boardList에서 오류가 나왔다.
해결
기존의 BoardDAO.java 파일에서 83번째 줄
pstmt = conn.prepareStatement(sql);
이 부분을
pstmt = conn.prepareStatement(sql, ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_UPDATABLE);
변경
728x90
'JSP > error' 카테고리의 다른 글
오류 : web.xml 파일 그냥 생성 시 적용안됨 (0) | 2023.02.02 |
---|---|
오류 : The constructor MultipartRequest(HttpServletRequest, String) refers to the missing type HttpServletRequest (0) | 2023.01.26 |
오류 : 이클립스에서 jsp파일 Run on server 안됨 (0) | 2023.01.23 |
오류 : javax/servlet/jsp/tagext/taglibraryvalidator (0) | 2023.01.22 |
오류 : the resource is not on the build path of a java project (0) | 2023.01.22 |
댓글