我有一个要求,我要求使用JNDI查找加载远程和本地EJB,所以没有@EJB注释。
我的EJB定义如下:
@Remote
public interface MyObjectInterfaceRemote extends MyObjectInterface {
}
@Local
public interface MyObjectInterfaceLocal extends MyObjectInterface {
}
public interface MyObjectInterface {
// A bunch of methods which both remote and local ejbs will inherit
}
@Remote(MyObjectInterfaceRemote.class)
@Local(MyObjectInterfaceLocal.class)
public class MyObjectEJB implements MyObjectInterfaceLocal, MyObjectInterfaceRemote {
//implementation of all methods inherited from MyObjectInterface.
}
我使用此代码查找远程EJB:
private MyObjectInterfaceRemote getEJB() throws NamingException {
InitialContext context = new InitialContext();
return (MyObjectInterfaceRemote) context.lookup(MyObjectInterfaceRemote.class.getName());
}
它工作正常,但如果我制作另一种方法:
private MyObjectInterfaceLocal getLocalEJB() throws NamingException {
InitialContext context = new InitialContext();
return (MyObjectInterfaceLocal) context.lookup(MyObjectInterfaceLocal.class.getName());
}
我得到了
javax.naming.NameNotFoundException:
Context: Backslash-PCNode03Cell/nodes/Backslash-PCNode03/servers/server1,
name: MyObjectInterfaceLocal: First component in name MyObjectInterfaceLocal not found.
[Root exception is org.omg.CosNaming.NamingContextPackage.NotFound:
IDL:omg.org/CosNaming/NamingContext/NotFound:1.0]
[...]
我错过了什么?我是否必须使用不同的东西来查找本地ejb?
注意:如果我使用
@EJB
MyObjectInterfaceLocal ejb;
本地ejb成功加载。
答案 0 :(得分:6)
您是否尝试过以下代码?
context.lookup("ejblocal:"+MyObjectInterfaceLocal.class.getName())
Websphere对远程和本地接口使用不同的默认绑定模式。