尝试使用 Oracle WebLogic 12.1 从初始上下文中检索数据源对象时出现以下错误:
“创建虚拟 orb 的问题:org.omg.CORBA.COMM_FAILURE:vmcid:SUN 次要代码:203 已完成:否”和“java.lang.ClassCastException:java.lang.Object 无法转换为 java.io.Serializable”
代码是:
Hashtable h=new Hashtable();
h.put(Context.INITIAL_CONTEXT_FACTORY,"weblogic.jndi.WLInitialContextFactory");
h.put(Context.PROVIDER_URL,"t3://localhost:7001/");
h.put(Context.SECURITY_PRINCIPAL,"ck");
h.put(Context.SECURITY_CREDENTIALS,"monster26");
Context c = new InitialContext(h);
DataSource ds = (DataSource) c.lookup("lic.mod.mypool");
Connection con = ds.getConnection();
感谢所有帮助,谢谢。