在数据库连接池 编程里使用了copyonwritearrayList

本文介绍了一个使用Oracle数据库的连接池进行配置的过程。通过设置DataSource的相关属性,如URL、用户名和密码等,并利用securityHandler来获取密码。同时,还设置了连接池的一些高级属性,如读取超时时间和禁用带外(OOB)功能。最后初始化了连接工厂和连接池。
摘要由CSDN通过智能技术生成


@Override
public void config(ComponentConfig config)
{
super.config(config);

// use the security handler to retrieve password
// if it is available.
if (securityHandler == null) {
securityHandler = ContextManager.getSecurityHandler();
}
if (securityHandler != null) {
password = securityHandler.retrievePassword(keyHost, user);
}

try {
dataSource = new OracleConnectionPoolDataSource();
Properties properties = CommonUtil.retrieveStringProperties(systemProperties);;
// process id as current pid
properties.setProperty("oracle.jdbc.v$session.process", String.valueOf(CommonUtil.getPid()));
properties.setProperty("oracle.jdbc.ReadTimeout", String.valueOf(readTimeout * 1000));
properties.setProperty("oracle.net.disableOob", String.valueOf(oracleNetDisableOob));
dataSource.setConnectionProperties(properties);

//dataSource.setDriverClass("oracle.jdbc.OracleDriver");
dataSource.setURL(brokerUrl);
dataSource.setUser(user);
dataSource.setPassword(password);

// the settings below are optional -- c3p0 can work with defaults
//dataSource.setMinPoolSize(initialPoolSize);
//dataSource.setMaxPoolSize(maxPoolSize);
//dataSource.setAcquireIncrement(this.aquireIncrement);

connectionFactory = AQjmsFactory.getConnectionFactory(dataSource);
connections = new CopyOnWriteArrayList<JmsConnection>();
createConnections(this.initialPoolSize);
LOGGER.debug(String.format(
"connection pool initialized with %d connections",
initialPoolSize));
}
catch (JMSException e) {
String error = "Failed to get connectionFactory with error "
+ e.getMessage();
LOGGER.error(error);
throw new InitializationException(error);
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
LOGGER.debug(String.format(
"connection pool initialized with %d connections",
initialPoolSize));
// replace cxCode for OracleAQ
if (DEFAULT_JMS_CX_CODE.equals(cxCode)) {
cxCode = "CX610";
}
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值