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