B
binlinux
Unregistered / Unconfirmed
GUEST, unregistred user!
我用eclipse+lomboz写了一个ejb
用remote接口调用没有问题,但是在HelloEJBLocal中加入
public String getTest()
在HelloEJBBean中加入
public String getTest()
{
return "Hello Local";
}
在客户端写上
Context initial = new InitialContext();
Object objref = initial.lookup("HelloEJBLocal");
HelloLocal aa = objref.create();
System.out.println(aa.getTest());
为什么不可以达到预期目的??????
用remote接口调用没有问题,但是在HelloEJBLocal中加入
public String getTest()
在HelloEJBBean中加入
public String getTest()
{
return "Hello Local";
}
在客户端写上
Context initial = new InitialContext();
Object objref = initial.lookup("HelloEJBLocal");
HelloLocal aa = objref.create();
System.out.println(aa.getTest());
为什么不可以达到预期目的??????