Jeffrey's Sky

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

          開源軟件問題記錄系列 之一 在 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 閱讀(226) 評論(0)  編輯  收藏 所屬分類: 開源技術

          主站蜘蛛池模板: 扬州市| 凤庆县| 徐水县| 宁夏| 苗栗县| 汝南县| 凤庆县| 会宁县| 安泽县| 扎鲁特旗| 汝阳县| 丰城市| 郑州市| 宁化县| 泽州县| 工布江达县| 泾阳县| 蒙阴县| 扬中市| 旬阳县| 武宁县| 永平县| 肥东县| 扎兰屯市| 元谋县| 如东县| 华坪县| 介休市| 潼南县| 肃南| 诸城市| 盐亭县| 长武县| 马公市| 饶河县| 武夷山市| 松滋市| 邹平县| 封开县| 简阳市| 剑河县|