sql >> データベース >  >> RDS >> Mysql

tomcat7とmysqlを接続する方法

    実行できる手順は次のとおりです。

    1. context.xmlを作成し、TOMCAT_HOME/confの下に保存します。

    2. 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" />

    3. アプリケーションの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>

    4. mysqlドライバーを含むJAR(例:mysql-connector-java-5.1.12-bin.jar)をTOMCAT_HOME / lib

      に配置します。

    お役に立てば幸いです。




    1. MySQLで大文字を含む行を見つける3つの方法

    2. 障害点からコードを実行し続けることは可能ですか?

    3. 次および過去14日以内のすべての誕生日を一覧表示するSQL

    4. エラー1022-書き込めません。テーブル内の重複キー