我有一个针对具有两个 weblogic 托管服务器的集群的数据源,即 239.112.112.47:8001 和 239.112.112.48:9001
数据源将连接池的默认最大容量设置为 15。
因此,我预计总共有 15*2=30 个连接。
但是,我的客户端代码在单个服务器(239.112.112.47:8001)上也只有 15 个连接,而不是在我的集群的两个服务器上。
下面是我的代码:
public static void main(String ar[])throws Exception
{
InitialContext ic=null;
try{
Hashtable env = new Hashtable();
env.put(Context.INITIAL_CONTEXT_FACTORY, JNDI_FACTORY);
env.put(Context.PROVIDER_URL, 239.112.112.47:8001);
ic = new InitialContext(env);
}
catch(Exception e){
System.out.println("\n\n\t Unable To Get The InitialContext => "+e);
}
Connection con[]=new Connection[100];
try{
for(int i=0;i<100;i++)
{
DataSource ds=(DataSource)ic.lookup("MyDS"); //Enter your DataSource or MultidataSource JNDI name Here
con[i]=ds.getConnection();
System.out.println("\n\n\t GOT CONNECTION con["+i+"]: "+con[i]);
Thread.sleep(1000);
}