第一步:创建工程
选择【File】-〉【New Project】,出现下面的界面:
选择【Enterprise】-〉【Enterprise Application Client】,进入下面的界面:
输入工程的名字:HelloClient,点击完成即可。
第二步:使用EJB的接口
创建一个包
在HelloClient应用的【Source Package】上创建一个Java包,包名为session.home,与要访问的EJB的包名相同。
把接口文件拷贝过来
然后选择EJB应用中的文件:HelloSessionRemote.java,点击右键,选择【copy】
然后选择HelloClient应用的【session.home】接口,点击右键,选择【paste】
第三步:修改客户端的代码
系统自动生成的类文件的代码如下:
/*
* Main.java
*
* Created on 2007
年4月19日, 下午7:51
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package helloclient;
/**
*
* @author Administrator
*/
public class Main {
/** Creates a new instance of Main */
public Main() {
}
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
}
}
使用注入的方式访问EJB
注入EJB,代码如下:
@EJB
private static HelloSessionRemote hello;
需要导入EJB和HelloSessionRemote,代码如下:
import javax.ejb.EJB;
import session.hello.*;
编写测试代码,代码如下:
public void test(){
System.out.println(hello.hello());
}
在main方法中调用测试方法,代码如下:
public static void main(String[] args) {
Main m = new Main();
m.test();
}
完整的代码如下:
/*
* Main.java
*
* Created on 2007
年4月19日, 下午7:51
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package helloclient;
import javax.ejb.EJB;
import session.hello.*;
/**
*
* @author Administrator
*/
public class Main {
//
@EJB
private static HelloSessionRemote hello;
/** Creates a new instance of Main */
public Main() {
}
/**
* @param args the command line arguments
*/
Main m = new Main();
m.test();
}
public void test(){
System.out.println("result:"+hello.hello());
}
}
选择工程,点击右键,选择“Run Project”。
运行结果如下:
使用JNDI查询的方式访问EJB
定义一个成员变量:
private static HelloSessionRemote hello;
添加一个查询EJB的初始化方法
public void init(){
try{
Context ctx = new InitialContext();
hello =(HelloSessionRemote) ctx.lookup(HelloSessionRemote.class.getName());
}catch(Exception e){
System.out.println(e.toString());
}
}
在构造方法中添加对init方法的调用
public Main() {
init();
}
需要导入的包:
import javax.ejb.EJB;
import session.hello.*;
import javax.naming.*;// 这是与前面不同的地方
测试方法和main方法都不变。
选择工程,点击右键,选择“Run Project”。
运行结果与上面的运行的结果相同。
参考书:《Java EE 5实用教程——基于WebLogic和Eclipse》EJB部分