免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1622 | 回复: 1
打印 上一主题 下一主题

用反射写了一个动态初始化代理集合的Hibernate方法,请高人指点 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-06-21 15:41 |只看该作者 |倒序浏览
public static Object loadAndInit(Class c,Serializable id,String[] methods){
                Session session=null;
                Object obj=null;
                try{
                        session=HibernateSessionFactory.currentSession();
                        obj=session.load(c,id);
                        for(int i=0;i<methods.length;i++){
                        Hibernate.initialize(inverkMethod(obj,methods[i]));
                        }
                }catch(Exception ex){
                        ex.printStackTrace();
                }
                finally{
                        if(session!=null)
                                HibernateSessionFactory.closeSession();
                }
                return obj;
        }


private static Object inverkMethod(Object obj,String methodName){
                Method[] m=obj.getClass().getMethods();
                Object returnValue=null;
                try{
                        for(int i=0;i<m.length;i++){
                                if(m[i].getName().equals(methodName)){
                                        returnValue=m[i].invoke(obj,null);
                                }
                        }
                }catch(Exception ex){
                        ex.printStackTrace();
                }
                return returnValue;
        }

我的想法是,在配置文件里把所有的集合都设定成延迟加载,然后在加载对象的时候临时决定初始化哪些集合。虽然对于单个的集合可以用迫切左外连接,但是对多个集合还是得一个一个的加载。测试通过了,但是不知道有没有更好的办法。

论坛徽章:
0
2 [报告]
发表于 2006-06-21 15:55 |只看该作者
这个东西是想以后整到Spring的HibernateCallBack里,使Spring的Hibernate模板可以选择性地动态初始化集合。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP