セッション 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 メソッドを呼び出す利点は何ですか?