7,8장 다시 확인해보고, 9장 파일 지우고 다시 해봐도 오류가 나네요..
예제파일을 그대로 적용시켜봐도 오류가 납니다;;
모두 하나같이 Connection conn = ds.getConnection(); 이부분을 지적합니다.
게시판 찾아봤는데 저와 같은 증상을 겪은 분들이 올린 질문 답변 내용 다 확인해봐도 안됩니다...
이것때문에 진도 못나가고 있습니다 ㅜㅜ
도와주세요!

오류내용
HTTP Status 500 - An exception occurred processing JSP page /01_dbcp.jsp at line 21

type Exception report

message An exception occurred processing JSP page /01_dbcp.jsp at line 21

description The server encountered an internal error that prevented it from fulfilling this request.

exception
org.apache.jasper.JasperException: An exception occurred processing JSP page /01_dbcp.jsp at line 21

18: Context initContext = new InitialContext();
19: Context envContext = (Context) initContext.lookup("java:/comp/env");
20: DataSource ds = (DataSource) envContext.lookup("jdbc/myoracle");
21: Connection conn = ds.getConnection();
22: out.println("DBCP 연동 성공");
23: %>
24: