実行できる手順は次のとおりです。
-
context.xmlを作成し、TOMCAT_HOME/confの下に保存します。
-
context.xmlに、次のようなDB構成を追加する必要があります。
<Resource name="jdbc/test" auth="Container" type="javax.sql.DataSource" maxActive="510" minIdle="0" maxIdle="200" maxWait="10000" username="test" password="test" driverClassName="com.mysql.jdbc.Driver" url="jdbc:mysql://127.0.0.1:3306/test" poolPreparedStatements="true" maxOpenPreparedStatements="510" validationQuery="SELECT 1" testOnBorrow="true" />
-
アプリケーションのweb.xmlで、次のような上記のコンテキストを参照してください。
<resource-ref> <description>DB Connection</description> <res-ref-name>jdbc/test</res-ref-name> <res-type>javax.sql.DataSource</res-type> <res-auth>Container</res-auth> </resource-ref>
-
mysqlドライバーを含むJAR(例:mysql-connector-java-5.1.12-bin.jar)をTOMCAT_HOME / lib
に配置します。
お役に立てば幸いです。