在tomcat与jboss中配置c3p0连接池


Appendix D: Configuring c3p0 DataSources in TomcatGo To Top

You can easily configure Apache's Tomcat web application server to use c3p0 pooled DataSources. Below is a Tomcat 5.0 sample config to get you started. It's a fragment of Tomcat's conf/server.xml file, which should be modified to suit and placed inside a element.


factory org.apache.naming.factory.BeanFactory driverClass org.postgresql.Driver jdbcUrl jdbc:postgresql://localhost/c3p0-test user swaldman password test minPoolSize 5 maxPoolSize 15 acquireIncrement 5

For Tomcat 5.5, try something like the following (thanks to Carl F. Hall for the sample!):




The rest is standard J2EE stuff: You'll need to declare your DataSource reference in your web.xml file:

jdbc/pooledDS javax.sql.DataSource Container

And you can access your DataSource from code within your web application like this:

InitialContext ic = new InitialContext(); DataSource ds = (DataSource) ic.lookup("java:comp/env/jdbc/pooledDS");

That's it!


拷贝jdbc.jar和c3p0.jar到defaul/lib/下

Appendix E: JBoss-specific notesGo To Top

To use c3p0 with JBoss:

  1. Place c3p0's jar file in the lib directory of your jboss server instance (e.g. ${JBOSS_HOME}/server/default/lib)
  2. Modify the file below, and save it as c3p0-service.xml in the deploy directory of your jboss server (e.g. ${JBOSS_HOME}/server/default/deploy). Note that parameters must be capitalized in this file, but otherwise they are defined as described above.

Note: Users of c3p0 jboss support prior to c3p0-0.9.1 please click here!

Please note: As of c3p0-0.9.1, the class name of the jboss configuration mbean has changed to com.mchange.v2.c3p0.jboss.C3P0PooledDataSource (from com.mchange.v2.c3p0.mbean.C3P0PooledDataSource), in order to distinguish what is really jboss-specific functionality from c3p0's more general JMX support.

The old jboss config mbeans are deprecated, but will still work. However, support for new configuration parameters will only be added under the new name. Updating requires a one-word change to your c3p0-service.xml, change "mbean" to "jboss" where your old file says 'code="com.mchange.v2.c3p0.mbean.C3P0PooledDataSource"'. Just do it!

Hide box.以下是0.9.2配置






             name="jboss:service=C3P0PooledDataSource">
     
      java:PooledDS
      jdbc:oracle:thin:@218.85.135.184:1522:BTS
      oracle.jdbc.driver.OracleDriver
      best_bts
      best_bts

     
     

     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     


      jboss:service=Naming
  


你可能感兴趣的:(在tomcat与jboss中配置c3p0连接池)