展开全部
启动weblogic,配置“连接缓冲池”和“数据源”,在java代码中用JNDI查找刚配置的数据源如, public static Connection getConnectionWeblogic() throws Exception {
Connection ct = null;
DataSource ds = null;
try {
javax.naming.InitialContext ctx = new javax.naming.InitialContext();
ds = (javax.sql.DataSource) ctx.lookup("dbs");//dbs为上面配置的数据源名
if (ds != null) {
ct = ds.getConnection();
}
}
catch (Exception e) {
LOGGER.error(e.getMessage());
throw e;
}
return ct;
}
Connection ct = null;
DataSource ds = null;
try {
javax.naming.InitialContext ctx = new javax.naming.InitialContext();
ds = (javax.sql.DataSource) ctx.lookup("dbs");//dbs为上面配置的数据源名
if (ds != null) {
ct = ds.getConnection();
}
}
catch (Exception e) {
LOGGER.error(e.getMessage());
throw e;
}
return ct;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询