users@glassfish.java.net

Glassfish Beginner Setup Question

From: <glassfish_at_javadesktop.org>
Date: Wed, 07 Feb 2007 15:09:49 PST

I created this jdbc connection. I want to connect to it from my WAR. What does my web.xml need to contain so that I can access the resource pool?

<jdbc-connection-pool allow-non-component-callers="false"
        associate-with-thread="false"
        connection-creation-retry-attempts="0"
        connection-creation-retry-interval-in-seconds="10"
        connection-leak-reclaim="false"
        connection-leak-timeout-in-seconds="0"
        connection-validation-method="auto-commit"
        datasource-classname="com.mysql.jdbc.jdbc2.optional.MysqlConnectionPoolDataSource"
        fail-all-connections="false"
        idle-timeout-in-seconds="300"
        is-connection-validation-required="false"
        is-isolation-level-guaranteed="false"
        lazy-connection-association="false" lazy-connection-enlistment="false"
        match-connections="false"
        max-connection-usage-count="0"
        max-pool-size="32"
        max-wait-time-in-millis="60000"
        name="myDB"
        non-transactional-connections="false"
        pool-resize-quantity="2"
        res-type="javax.sql.ConnectionPoolDataSource"
        statement-timeout-in-seconds="-1"
        steady-pool-size="8"
        validate-atmost-once-period-in-seconds="0"
        wrap-jdbc-objects="false">

      <description>My Database Description</description>
      <property name="user" value="username"/>
      <property name="password" value="password"/>
      <property name="databaseName" value="myDBName"/>
    </jdbc-connection-pool>
[Message sent by forum member 'tmonteit' (tmonteit)]

http://forums.java.net/jive/thread.jspa?messageID=202567