到目前为止,几天来一直在尝试运行我的第一个 EJB 项目。我的 EJB 项目目前有这个源代码:
package calc;
import javax.ejb.Remote;
@Remote
public interface SessionBeanRemote {
public int add(int a,int b);
}
package calc;
import javax.ejb.Stateless;
@Stateless(name="MySessionBean",mappedName="myCalculator")
public class SessionBean implements SessionBeanRemote {
public int add(int a,int b){
return a +b;
}
}
其次,有另一个简单的 java 项目,我可以在其中调用 EJB 组件:
Properties props = new Properties();
props.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.enterprise.naming.
SerialInitContextFactory");
props.setProperty("org.omg.CORBA.ORBInitialHost", "localhost");
props.setProperty("org.omg.CORBA.ORBInitialPort", "3700");
InitialContext ctx = new InitialContext(props);
SessionBeanRemote bean = (SessionBeanRemote) ctx.lookup("myCalculator");
int result = bean.add(3, 4);
System.out.println(result);
ctx.close();
使用的 JAR:gf-client.jar,无需添加其他 JAR,正如 Glassfish 社区所推荐的那样
异常捕获:
java.lang.NoSuchMethodError: com.sun.corba.ee.spi.orbutil.fsm.FSMImpl.(Lcom/sun/corba/ee/spi/orbutil/fsm/StateEngine;Lcom/sun/corba/ee/spi/orbutil /fsm/状态;Z)V
2个其他问题:
context.lookup("java:global:/componentAddress")
vscontext.loopup("mappedName")
它们之间有什么区别,何时使用它们?props.setProperty("org.omg.CORBA.ORBInitialHost", "192.168.1.100")
对比props.setProperty("org.omg.CORBA.ORBInitialHost", "localhost")