Jeffrey's Sky

          Go with wind
          隨筆 - 14, 文章 - 1, 評論 - 15, 引用 - 0
          數據加載中……

          開源軟件問題記錄系列 之一 在 Tomcat 中設置 Datasource

          Tomcat提供了靈活且簡單的JNDI及Datasource設置方式。

          這里,記錄我在學習應用過程中的問題。

          1. 首先要在你的自己的應用程序中WEB-INF/web.xml 中添加一個Resource-ref, 指定Datasource 的 JNDI。
              <resource-ref>
                <description>DB Connection</description>
                <res-ref-name>jdbc/storedb</res-ref-name>
                <res-type>javax.sql.DataSource</res-type>
                <res-auth>Container</res-auth>
            </resource-ref>
          2. 在Tomcat的 config/context.xml中添加Resource。 (本例中使用的是MySql作為 DB)

             <!-- maxActive: Maximum number of dB connections in pool. Make sure you
                   configure your mysqld max_connections large enough to handle
                   all of your db connections. Set to -1 for no limit.
                   -->

              <!-- maxIdle: Maximum number of idle dB connections to retain in pool.
                   Set to -1 for no limit.  See also the DBCP documentation on this
                   and the minEvictableIdleTimeMillis configuration parameter.
                   -->

              <!-- maxWait: Maximum time to wait for a dB connection to become available
                   in ms, in this example 10 seconds. An Exception is thrown if
                   this timeout is exceeded.  Set to -1 to wait indefinitely.
                   -->

              <!-- username and password: MySQL dB username and password for dB connections  -->

              <!-- driverClassName: Class name for the old mm.mysql JDBC driver is
                   org.gjt.mm.mysql.Driver - we recommend using Connector/J though.
                   Class name for the official MySQL Connector/J driver is com.mysql.jdbc.Driver.
                   -->
             
              <!-- url: The JDBC connection url for connecting to your MySQL dB.
                   -->

            <Resource name="jdbc/storedb" auth="Container" type="javax.sql.DataSource"
                         maxActive="100" maxIdle="30" maxWait="10000"
                         username="root" password="passw0rd" driverClassName="com.mysql.jdbc.Driver"
                         url="jdbc:mysql://localhost:3306/storedb"/>


          posted on 2010-08-02 10:51 Jeffrey Feng 閱讀(228) 評論(0)  編輯  收藏 所屬分類: 開源技術

          主站蜘蛛池模板: 当雄县| 深泽县| 怀宁县| 越西县| 定兴县| 阳春市| 东源县| 松原市| 社会| 鄂伦春自治旗| 张北县| 武强县| 哈尔滨市| 南通市| 上虞市| 思南县| 彰化市| 宣城市| 德保县| 夹江县| 晴隆县| 平利县| 神木县| 纳雍县| 韶山市| 阜阳市| 图们市| 万源市| 永年县| 宁南县| 太仆寺旗| 西和县| 金溪县| 吉隆县| 邢台县| 宁波市| 仪征市| 岳阳县| 封丘县| 曲松县| 思南县|