weblogic集群中获取jndi的方式

# The following example specifies a list of WebLogic Servers using the same port:
ht.put(Context.PROVIDER_URL,
"t3://acme1,acme2,acme3:7001");

All the WebLogic Servers listen on the port specified at the end of the URL.
# The following example specifies a list of WebLogic Servers using the different ports:
ht.put(Context.PROVIDER_URL,
"t3://node1:7001,node2:7002,node3:7003");

原文地址:https://www.cnblogs.com/davidwang456/p/3314416.html