我正在尝试远程方法访问的EJB 3示例。 一个简单的例子,我在编写代码并将其放入jar中。 我已经在C:\ jboss-4.2.3.GA \ server \ default \ deploy中的jboss服务器中部署了jar jar名称是 01addproject.jar(从eclipse导出为EJB JAR文件)
我正在使用另一个项目编写客户端代码, 查找服务并以简单的方式使用远程方法。
我觉得这个类没有在RMI注册表中注册,当我将客户端代码作为PSVM程序运行时,它会给出NameNotFoundException。
这是错误:
javax.naming.NameNotFoundException: AddRemoteImpl not bound
at org.jnp.server.NamingServer.getBinding(NamingServer.java:529)
at org.jnp.server.NamingServer.getBinding(NamingServer.java:537)
at org.jnp.server.NamingServer.getObject(NamingServer.java:543)
at org.jnp.server.NamingServer.lookup(NamingServer.java:267)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:305)
(因缺乏空间而减少)
包结构:
AddRemote.java中的代码
package com.cluster.remote;
import javax.ejb.Remote;
@Remote
public interface AddRemote {
void m1();
int add(int x, int y);
}
AddRemoteImpl.java中的代码
package com.cluster.remote;
import javax.ejb.Stateless;
@Stateless
public class AdddRemoteImpl implements AddRemote {
@Override
public void m1() {
System.out.println("inside m1");
}
@Override
public int add(int x, int y) {
return x + y;
}
}
Client.java中的客户端代码(psvm程序)
package clientcode;
import java.util.Hashtable;
import javax.naming.Context;
import javax.naming.InitialContext;
import javax.naming.NamingException;
import com.cluster.remote.AddRemote;
public class Client {
/**
* @param args
*/
public static void main(String[] args) {
try {
AddRemote remote = (AddRemote) getInitialContext().lookup("AddRemoteImpl/remote");
System.out.println("The alue form the session bean is " + remote.add(3, 5));
System.out.println("Added Successfully");
} catch (NamingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
@SuppressWarnings({ "rawtypes", "unchecked" })
public static Context getInitialContext() throws NamingException{
Hashtable hashtable = new Hashtable();
hashtable.put(Context.INITIAL_CONTEXT_FACTORY, "org.jnp.interfaces.NamingContextFactory");
hashtable.put(Context.PROVIDER_URL, "localhost:1099");
Context context = new InitialContext(hashtable);
return context;
}
}
答案 0 :(得分:1)
EJB在绑定时没有导出,所以它被序列化为自身,而不是它的存根,因此客户端查找无法加载AddRemoteImpl类,这是合理的,因为客户端不应该。它的构建/声明/部署方式出了问题,无法进一步帮助。