日期:2014-05-16 浏览次数:20439 次
<Resource name="jdbc/test" auth="Container" type="javax.sql.DataSource" username="jtzt" password="jtzt" driverClassName="oracle.jdbc.driver.OracleDriver" url="jdbc:oracle:thin:@localhost:1521:xe" maxActive="100" maxIdle="30" maxWait="10000"/>
<resource-ref> <description>OracleDataSource</description> <res-ref-name>jdbc/test</res-ref-name> <res-type>javax.sql.DataSource</res-type> <res-auth>Container</res-auth> </resource-ref>
// Obtain our environment naming context Context initCtx = new InitialContext(); Context envCtx = (Context) initCtx.lookup("java:comp/env"); // Look up our data source DataSource ds = (DataSource) envCtx.lookup("jdbc/test"); // Allocate and use a connection from the pool Connection conn = ds.getConnection(); ... use this connection to access the database ... conn.close();
// Obtain our environment naming context Context initCtx = new InitialContext(); // Look up our data source DataSource ds = (DataSource) envCtx.lookup("java:comp/env/jdbc/test"); // Allocate and use a connection from the pool Connection conn = ds.getConnection(); ... use this connection to access the database ... conn.close();