| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

差分

ナビゲーションに移動 検索に移動
99 バイト追加 、 2020年2月15日 (土) 08:05
編集の要約なし
**$CATALINA_HOME/conf/server.xml
**Web アプリケーションの Context に Resource を設定
<&lt;Host name="localhost"
:
<&lt;Context path="/DBTest" docBase="DBTest" debug="5" reloadable="true" crossContext="true">&gt; <&lt;Resource name="jdbc/myoracle" auth="Container"
type="javax.sql.DataSource"
driverClassName="oracle.jdbc.OracleDriver"
url="jdbc:oracle:thin:@127.0.0.1:1521:mysid"
username="scott" password="tiger" maxActive="20" maxIdle="10"
maxWait="-1"/>&gt; <&lt;/Context>&gt;
:
<&lt;/Host>&gt;
*web.xml の設定
<&lt;web-app xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
version="2.4">&gt;
:
<&lt;resource-ref>&gt; <&lt;description>&gt;Oracle Datasource example<&lt;/description>&gt; <&lt;res-ref-name>&gt;jdbc/myoracle<&lt;/res-ref-name>&gt; <&lt;res-type>&gt;javax.sql.DataSource<&lt;/res-type>&gt; <&lt;res-auth>&gt;Container<&lt;/res-auth>&gt; <&lt;/resource-ref>&gt;
:
<&lt;/web-app>&gt;
*コードサンプル

案内メニュー