1

直接调用会话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);
        }

session bean的其他方法

 /**
             * @ejb.interface-method view-type="both"
        */
        public String test2(String name) {
          //Code
        }  

通过创建本地对象来调用会话 bean 方法有什么好处?

4

0 回答 0