=====Document=====
*http://java.sun.com/j2ee/1.4/docs/api/index.html
=====XML Schemas for [[J2EE ]] Deployment Descriptors=====
http://java.sun.com/xml/ns/j2ee/
====TOMCAT====
*準備
**$CATALINA_HOME/common/lib にJDBCドライバを置く
**Tomcatは、[[Tomcat]]は、*.jar にしか対応してないので、*.zip なら、リネーム
*server.xml の編集
**$CATALINA_HOME/conf/server.xml
**Web アプリケーションの Context に Resource [[R]]esource を設定
<Host name="localhost"
:
<Context path="/DBTest" docBase="DBTest"
debug="5" reloadable="true" crossContext="true">
<Resource [[R]]esource name="jdbc/myoracle" auth="Container"
type="javax.sql.DataSource"
driverClassName="oracle.jdbc.OracleDriver[[Oracle]]Driver"
url="jdbc:oracle:thin:@127.0.0.1:1521:mysid"
username="scott" password="tiger" maxActive="20" maxIdle="10"
*web.xml の設定
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema[[XML]]Schema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
:
<resource-ref>
<description>[[Oracle ]] Datasource example</description>
<res-ref-name>jdbc/myoracle</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
----
{{include_html [[banner_html]], "!J2EE"}}