|
文件: |
EJBCmpSessionBean.rar |
大小: |
311KB |
下载: |
下载 | |
1. 在EnterPrise Setup中建立Driver
2.得到DataSource
3.通过表建立Cmp的Bean
4.在Cmp中实现数据库的操作
5.新建一的SesionBean
6.建立一些方法 与Cmp中的方法中的参数相同
7.在Sessionbean中的继承了SessionBean中通过JNDI得到Cmp中的方法来实现:
eg:
import javax.naming.Context;
import javax.naming.InitialContext;
方法中通过JNDI得到Cmp中的方法:
public boolean Login(Integer stuId, String stuName, String stuSex) {
boolean flag = false;
try {
Context ctx = new InitialContext();
StuInfoHome stuhome = (StuInfoHome) ctx.lookup("StuInfo");
Collection list = stuhome.findAll(stuId, stuName, stuSex);
if (list.size() > 0) {
flag = true;
}
} catch (Exception ex) {
ex.printStackTrace();
}
return flag;
}
注意在Cmp中方法都是在EJBLocalHome中实现
阅读(1025) | 评论(0) | 转发(0) |