728x90
반응형
1. 윈도우 설치
2. 드라이버 설치
3. 윈도우 업데이트
4. 자바 설치 & 패스 설치(API 설치)
5. 이클립스 설치
6. 오라클 설치 & 패스 설치(자바 뒤에 위치)
7. 오라클 포트 변경(/as sysdba, sql> exec dbms_xdb.sethttpport(8081))
8. 자바 jdk-jre-lib-ext, jre-lib-ext에 오라클의 jdbc의 classes12, ojdbc.jar 복사
9. 톰캣 설치(port 8080)
10. 톰캣 연동(이클립스에서 서버 설치)
11. 자바 jdk-jre-lib-ext, jre-lib-ext에 톰캣의 lib의 servlet-api.jar 복사
12. 톰캣의 lib에 jstl.jar, standard.jar 복사(JSTL)
13. 향상된 DB연동
-context.xml
<Resource name="jdbc/TestDB" auth="Container"
type="javax.sql.DataSource" driverClassName="oracle.jdbc.driver.OracleDriver"
url="jdbc:oracle:thin:@localhost:1521:xe"
username="scott" password="tiger" maxActive="20" maxIdle="10" maxWait="-1"/>
-server.xml
<GlobalNamingResources>
<!-- Editable user database that can also be used by
UserDatabaseRealm to authenticate users
-->
<Resource auth="Container" description="User database that can be updated and saved" factory="org.apache.catalina.users.MemoryUserDatabaseFactory" name="UserDatabase" pathname="conf/tomcat-users.xml" type="org.apache.catalina.UserDatabase"/>
<Resource auth="Container" name="jdbc/TestDB" type="javax.sql.DataSource"/>
</GlobalNamingResources>
-프로젝트 web.xml
<resource-ref>
<res-ref-name>jdbc/TestDB</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
2. 드라이버 설치
3. 윈도우 업데이트
4. 자바 설치 & 패스 설치(API 설치)
5. 이클립스 설치
6. 오라클 설치 & 패스 설치(자바 뒤에 위치)
7. 오라클 포트 변경(/as sysdba, sql> exec dbms_xdb.sethttpport(8081))
8. 자바 jdk-jre-lib-ext, jre-lib-ext에 오라클의 jdbc의 classes12, ojdbc.jar 복사
9. 톰캣 설치(port 8080)
10. 톰캣 연동(이클립스에서 서버 설치)
11. 자바 jdk-jre-lib-ext, jre-lib-ext에 톰캣의 lib의 servlet-api.jar 복사
12. 톰캣의 lib에 jstl.jar, standard.jar 복사(JSTL)
13. 향상된 DB연동
-context.xml
<Resource name="jdbc/TestDB" auth="Container"
type="javax.sql.DataSource" driverClassName="oracle.jdbc.driver.OracleDriver"
url="jdbc:oracle:thin:@localhost:1521:xe"
username="scott" password="tiger" maxActive="20" maxIdle="10" maxWait="-1"/>
-server.xml
<GlobalNamingResources>
<!-- Editable user database that can also be used by
UserDatabaseRealm to authenticate users
-->
<Resource auth="Container" description="User database that can be updated and saved" factory="org.apache.catalina.users.MemoryUserDatabaseFactory" name="UserDatabase" pathname="conf/tomcat-users.xml" type="org.apache.catalina.UserDatabase"/>
<Resource auth="Container" name="jdbc/TestDB" type="javax.sql.DataSource"/>
</GlobalNamingResources>
-프로젝트 web.xml
<resource-ref>
<res-ref-name>jdbc/TestDB</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
14. weblogic8.1을 설치하고 weblogin.jar를 톰캣 lib에 넣는다.
15. 각종 jar파일 세팅(서버를 돌릴 필요가 없다면 자바 jdk-jre-lib-ext, jre-lib-ext에, 서버를 돌릴 필요가 있다면 톰캣의 lib에 저장한다)
출처 : http://kamary.tistory.com
출처 : http://kamary.tistory.com
728x90