以weblogic为服务器开辟会话EJB[Java编程]
本文“以weblogic为服务器开辟会话EJB[Java编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
开辟运行环境:j2eesdk1.4+weblogic8.1
阐明:本试验已开辟一个会话EJB为例,系统采取的利用服务器为weblogic8.1
1、编写bean代码(代码的目录在c:\ejbhello下)
① 定义Home Interface
EJB容器通过EJB的Home Interface来成立EJB实例,和Remote Interface一样,履行Home Interface的类由EJB生成工具生成.代码以下:
package ejb.hello;
import javax.ejb.*;
import java.rmi.Remote;
import java.rmi.RemoteException;
import java.util.*;
/**
*只定义create办法
*/
public interface HelloHome extends EJBHome {
public Hello create() throws CreateException,
RemoteException;
}
②定义EJB远程接口(Remote Interface)
任何一个EJB都是通过Remote Interface被调用,首先要在Remote Interface中定义这个EJB可以被外界调用的全部办法.履行Remote Interface的类由EJB生成工具生成,试验的代码以下:
package ejb.hello;
import java.rmi.RemoteException;
import java.rmi.Remote;
import javax.ejb.*;
public interface Hello extends EJBObject, Remote {
//定义供远程调用的业务逻辑办法
public String getHello() throws RemoteException;
public String getStr() throws RemoteException;
}
③ EJB类的实现
在EJB类中,必须给出在Remote Interface中定义的远程办法的具体实现.EJB类中还包含一些EJB标准中定义的必须实现的办法,这些办法都有对比统一的实现模版,只需耗费精神在具体业务办法的实现上.试验的代码以下:
package ejb.hello;
import javax.ejb.*;
import java.util.*;
import java.rmi.*;
//类的实现
public class HelloBean implements SessionBean {
static final boolean verbose = true;
private SessionContext ctx;
// Implement the methods in the SessionBean
// interface
public void ejbActivate() {
if (verbose)
System.out.println("ejbActivate called");
}
public void ejbRemove() {
if (verbose)
System.out.println("ejbRemove called");
}
public void ejbPassivate() {
if (verbose)
System.out.println("ejbPassivate called");
}
//Sets the session context.
public void setSessionContext(SessionContext ctx) {
if (verbose)
System.out.println("setSessionContext called");
this.ctx = ctx;
}
/**
* This method corresponds to the create method in
* the home interface HelloHome.java.
* The parameter sets of the two methods are
* identical. When the client calls
* HelloHome.create(), the container allocates an
* instance of the EJBean and calls ejbCreate().
*/
public void ejbCreate () {
if (verbose)
System.out.println("ejbCreate called");
}
//以下业务逻辑的实现
public String getStr()
throws RemoteException
{
return("...My First EJB Test??Lenper_xie...!");
}
}
以上是“以weblogic为服务器开辟会话EJB[Java编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |