直接调用会话Bean方法
/**
* @ejb.interface-method view-type="both"
*/
public String test(String name, prefix, int length) {
int nSeq = test2(name);
}
通过创建本地会话bean对象
来调用会话bean方法/**
* @ejb.interface-method view-type="both"
*/
public String test(String name, prefix, int length) {
ITestSessionBeanLocal testSessionBean = (ITestSessionBeanLocal)_ctx.getEJBLocalObject();
int nSeq = testSessionBean.test2(name);
}
会话bean的其他方法
/**
* @ejb.interface-method view-type="both"
*/
public String test2(String name) {
//Code
}
通过创建本地对象来调用会话bean方法有什么好处?