Chinaunix首页 | 论坛 | 博客
  • 博客访问: 897815
  • 博文数量: 215
  • 博客积分: 10062
  • 博客等级: 上将
  • 技术积分: 2235
  • 用 户 组: 普通用户
  • 注册时间: 2007-12-01 13:21
文章分类

全部博文(215)

文章存档

2012年(1)

2011年(24)

2009年(16)

2008年(91)

2007年(83)

我的朋友

分类:

2008-01-03 22:11:30

文件: 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) |
给主人留下些什么吧!~~