1. contxet.xml 파일 생성 경로
2. contxet.xml 파일 내용
<?xml version="1.0" encoding="UTF-8" ?>
<Context>
<Resource
name = "jdbc/oracle"
auth="Container"
type="javax.sql.DataSource"
driverClassName="oracle.jdbc.driver.OracleDriver"
url="jdbc:oracle:thin:@127.0.0.1:1521:orcl"
username="scott"
password="tiger"
maxActive="20"
maxIdle="2"
maxWait="5000"
removeAbandoned="true"
testOnBorrow="true"
loginTimeout="10"
/>
</Context>
3. jsp 파일내에서 데이터베이스 접속 구문 수정
기존
수정 후
Context initCtx = new InitialContext();
Context envCtx = (Context)initCtx.lookup("java:comp/env");
DataSource dataSource = (DataSource)envCtx.lookup("jdbc/oracle");
//"jdbc/oracle" -> context.xml의 resource 이름
conn = dataSource.getConnection();
4. 톰캣서버 종료 후 재실행
'JAVA > JSP & Servlet' 카테고리의 다른 글
Servlet(서블릿) 생성 기본! [annotation] (0) | 2013.03.15 |
---|---|
[펌]JSP 모델1과 모델 2의 비교 (0) | 2013.03.14 |
[이클립스] JSP에서 IP제대로 출력되게 하기 ( -Djava.net.preferIPv4Stack=true) (0) | 2013.03.13 |
JSP : 우편번호검색 페이지2 -한 페이지에서 입력 & 검색- (0) | 2013.03.08 |
JSP : 우편번호검색 페이지 (0) | 2013.03.08 |