配置weblogic的connection pool和Data Source

类别:Java 点击:0 评论:0 推荐:

os version:windwos2000 server
hostname:mytest

database:oracle 9.2.0.1
port:1521
table: test(a number(2))
user:system
password:oracle

weblogic version: 7.0.4
domain:mydomain
server:myserver
port:7001
WL_HOME:d:\bea\weblogic

1.配置connection pool
打開weblogic管理控制台[http://mytest:7001/console]
mydomain->services->jdbc->connection pools
新增一connection pool
name: OraThinpool
url: jdbc:oracle:thin:@mytest:1521:technet
Driver Classname: oracle.jdbc.driver.OracleDriver
properties:user=system
password: oracle
target: myserver
test table name: dual

2.配置Data Source
打開weblogic管理控制台[http://mytest:7001/console]
mydomain->services->jdbc->Data Source
新增一Data Source
name: OraThinDS
JNDI Name: jndi_orathinDS
Pool Name: OraThinPool
target: myserver

3.測試代碼
Context ctx = null;
Hashtable ht = new Hashtable();
ht.put(Context.INITIAL_CONTEXT_FACTORY,
"weblogic.jndi.WLInitialContextFactory");
ht.put(Context.PROVIDER_URL,"t3://mytest:7001");
try {
ctx = new InitialContext(ht);

javax.sql.DataSource ds = (javax.sql.DataSource) ctx.lookup ("jndi_orathinDS");
java.sql.Connection conn = ds.getConnection();

Statement stmt=conn.createStatement();
String sql="select a from test";
ResultSet rs=stmt.executeQuery(sql);
while (rs.next()){
int i=rs.getInt(1);
System.out.println(i);
}
}
catch(Exception e){
e.printStackTrace();
}
rs.close();
stmt.close();
conn.close();

4.附注
數據庫的jdbc驅動位置應該在環境變量classpath中出現,本例使用的驅動為classes12.zip
位於d:\bea\weblogic\server\lib
則classpath=d:\bea\weblogic\server\lib\classes12.zip;%CLASSPATH%
修改d:\bea\weblogic\server\bin\startWLS.cmd中的classpath後重新啟動weblogic即可

本文地址:http://com.8s8s.com/it/it10887.htm