JBoss 5 book

martedì 17 marzo 2009

Tomcat pooling

With Database Connection Pooling (DBCP), we can scale our applications to handle increased load and deliver high performance benefits. Using recycled database connection objects cuts the time taken to re-instantiate and load frequently used objects, thus reducing unnecessary overheads.

Our approach to DBCP uses the Jakarta-Commons database connection pool. But first, we need to configure the JNDI DataSource in Tomcat by adding a declaration for the resource to server.xml file, which resides inside the /conf directory of your Tomcat installation (indicated by the environment variable CATALINA_HOME). The JNDI DataSource is used as a factory for connections. One of the major advantages of using a configuration like this is that the characteristics of the pool can be changed without affecting the application code.

server.xml ========================================
.........



<Host >

<Context path="/edi-web" docBase="edi-web" debug="5"
reloadable="true" crossContext="true">

<Resource name="EDI-DS" auth="Container"
type="javax.sql.DataSource" removeAbandoned="true"
removeAbandonedTimeout="30" maxActive="100"
maxIdle="30" maxWait="10000" username="user"
password="passws"
driverClassName="oracle.jdbc.driver.OracleDriver"
url="jdbc:oracle:thin:@192.168.0.1:1521:SME1" />

</Context>


</Host>
=================================================

In this example we have configured the DataSource EDI-DS which references an Oracle connection.

Use of the JDBC Data Sources requires that you make an appropriate JDBC driver available to both Tomcat internal classes and to your web application. This is most easily accomplished by installing the driver's JAR file(s) into the $CATALINA_HOME/common/lib directory, which makes the driver available both to the resource factory and to your application
(Notice: Tomcat 6 library repository is $CATALINA_HOME/lib )

We can configure a maximum number of DB connections in the pool. Make sure you choose a maximum connection count large enough to handle all of your database connections--alternatively, you can set 0 for no limit.

We can also specify the maximum time (in milliseconds) to wait for a database connection to become available, which in this example is 30 seconds.

Further, we can set the maximum number of idle database connections to be retained in the pool. Set this value to -1 for no limit. The most optimal performance is attained when the pool in its steady state contains just enough connections to service all concurrent connection requests, without having to create new physical database connections at runtime


Retrieving the Connection

Getting a connection form the DataSource is just a matter of looking up the Datasource from the InitialContext and then retrieve the associated connection:



Context ctx = new InitialContext();
DataSource ds = (DataSource) ctx.lookup("java:/comp/env/EDI-DS");
Connection conn = ds.getConnection();

39 commenti:

  1. In other words, it looks like it is running twice. Any ideas why this would be? In my server.xml, I do have two Contexts with the same docbase. Is that what's causing this?

    nahrungsergänzung

    RispondiElimina
  2. Good article but all attributes for the resource tag, are available for each Tomcat's version ?

    RispondiElimina
  3. Extremes meet. 長處即短處。物極必反。否極泰來!一切會更好! ....................................................

    RispondiElimina
  4. 發表,是一種抒發:好的心情可以一再的回味發酵;壞的心情就讓它留在文字裡吧!加油!........................................

    RispondiElimina
  5. 當一個人內心能容納兩樣相互衝突的東西,這個人便開始變得有價值了。............................................................

    RispondiElimina
  6. 向著星球長驅直進的人,反比踟躕在峽路上的人,更容易達到目的。............................................................

    RispondiElimina
  7. 河水永遠是相同的,可是每一剎那又都是新的。..................................................

    RispondiElimina
  8. 好的開始並不代表會成功,壞的開始並不代表是失敗............................................................

    RispondiElimina
  9. 愛,拆開來是心和受兩個字。用心去接受對方的一切,用心去愛對方的所有。......................................................................

    RispondiElimina
  10. Judge not a book by its cover.. . . . . . . . . . . . . . . . . . . . . . . . . . . . . .

    RispondiElimina
  11. 世間事沒有一樣沒有困難,只要有信心去做,至少可以做出一些成績。..................................................

    RispondiElimina