当前位置: 技术问答>java相关
关于Context和InitialContext的问题
来源: 互联网 发布时间:2015-02-18
本文导语: 我的程序里这样写 try{ Hashtable properties=new Hashtable(2); properties.put(Context.PROVIDER_URL,"IIOP://10.144.100.221:900/"); properties.put(Context.INITIAL_CONTEXT_FACTORY,"com.ibm.ejs.ns.jndi.CNInitialContextFactory"); //return new InitialContext(properties); Context...
我的程序里这样写
try{
Hashtable properties=new Hashtable(2);
properties.put(Context.PROVIDER_URL,"IIOP://10.144.100.221:900/");
properties.put(Context.INITIAL_CONTEXT_FACTORY,"com.ibm.ejs.ns.jndi.CNInitialContextFactory");
//return new InitialContext(properties);
Context result=new InitialContext(properties);
}catch(Exception e){System.out.println(e);}
可是此段程序执行到new InitialContext(properties);就会跳回"properties.put"并且停住不在执行.请各位指教。很急。解决的话一定给分
try{
Hashtable properties=new Hashtable(2);
properties.put(Context.PROVIDER_URL,"IIOP://10.144.100.221:900/");
properties.put(Context.INITIAL_CONTEXT_FACTORY,"com.ibm.ejs.ns.jndi.CNInitialContextFactory");
//return new InitialContext(properties);
Context result=new InitialContext(properties);
}catch(Exception e){System.out.println(e);}
可是此段程序执行到new InitialContext(properties);就会跳回"properties.put"并且停住不在执行.请各位指教。很急。解决的话一定给分
|
你是否在va的环境中??